Component
Lists Component
11 language-reference entries were extracted for this component.
- Fnd_Hook_List_SetEditableLists This hook gives you a place to call the Fnd_List_AddToListEditor method. This hook is called during the startup process by Foundation. Fnd_List_AddToListEditor ("Invoice...
- Fnd_List_AddButton The Fnd_List_AddButton routine adds a third button to Foundation’s choice list or command dialog. Pass it the button label to display. If the button is clicked, the dialog will...
- Fnd_List_AddItem The Fnd_List_AddItem routine adds a command to the Command Dialog. Pass it the command name to display to the user, and the 4D method to call if the command is selected by the...
- Fnd_List_AddToListEditor The Fnd_List_AddToListEditor routine should be called from the Fnd_Hook_List_SetEditableLists method. Any list names passed to this method will become editable by the database...
- Fnd_List_ChoiceList The Fnd_List_ChoiceList allows the user to select an element from a list. LIST TO ARRAY("MyList";MyTextArray) Fnd_Wnd_Title ("Choices") $element_i:=Fnd_List_ChoiceList ("Pick...
- Fnd_List_CommandDialog Fnd_List_CommandDialog displays the choice list dialog composed by calling the Fnd_List_AddToListEditor routine. See that command for an example.
- Fnd_List_EditOne The Fnd_List_EditOne routine allows the developer to edit the specified list in a semi-modal dialog. Fnd_List_EditOne ("Country Names")
- Fnd_List_Editor The Fnd_List_Editor routine displays the List Editor window in a new process. Only 4D lists previously passed to the Fnd_List_AddToListEditor method will be displayed.
- Fnd_List_Info Returns the requested information about the component. $version_t:=Fnd_List_Info ("version")
- Fnd_List_OnExit The Fnd_List_OnExit routine stores the current date and time in both the structure file (as a list) and the data file (as a record). We can compare these at startup to...
- Fnd_List_OnStartup The Fnd_List_OnStartup routine is called when the database is launched to determine if the lists in the structure file need to be updated from the lists in the data file....