Show or hide the prompter |
Member of List String Column (PRIM_LIST.String)
Data Type - Boolean
The ShowPrompter property controls the appearance of the prompter button for the field.
In this example, the prompter button in a Search field is used as the trigger to filter the contents of a list.
Define_Com Class(#Search.Visual) Name(#Search) ... ShowPrompter(True) ComponentVersion(1) ...
Evtroutine Handling(#Search.PrompterActivate)
Selectlist Named(#List)
#List.CurrentItem.Visible := (#CustomerName.Contains(#Search) *or (#Search = ""))
Endselect
Endroutine