RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
TCustomDataSetAdapter.ImplGetActionsList Method

Provides the underlying implementation for the GetActionsList method.

Pascal
procedure ImplGetActionsList(AList: TStrings); override;
C++
virtual __fastcall ImplGetActionsList(TStrings AList);

The GetActionsList method calls ImplGetActionsList to obtain the names of all actions that can be added to this adapter. The action names are the names by which server-side script refers to this adapter's actions. 

AList is an existing string list to fill with the names of valid actions. 

GetActionsList adds the following strings to AList (with the corresponding action class references as associated objects):

  • NextRow
  • PrevRow
  • LastRow
  • FirstRow
  • NewRow
  • Cancel
  • Apply
  • RefreshRow
  • EditRow
  • BrowseRow
  • PrevPage
  • GotoPage
  • NextPage

Note: The last three actions are only added if this adapter supports paging (if the value of the PageSize property is positive).
 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!