List String Column - ShowPrompter Property

Show or hide the prompter

Member of List String Column (PRIM_LIST.String)

Data Type - Boolean

Details

The ShowPrompter property controls the appearance of the prompter button for the field.
 

Example

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

See also

All Component Classes

Technical Reference

Febuary 18 V14SP2