Data Table DropDown - HelperText Property

Text to show in the Helper area of the field

Member of Data Table DropDown (PRIM_MD.DropDown)

Data Type - String

Details

The Helper property specifies the text that will be show below the input area of the control.

The HelperPosition must be set to Bottom for the help to be visible.

Example

This example shows the field and helper text. ErrorText will be shown if the password is invalid.

     Begin_Com Role(*EXTENDS #PRIM_WEB) Height(672) Width(1017) 

Define_Com Class(#PRIM_MD.Edit) Name(#Edit) DisplayPosition(1) Label('Password') Left(16) Parent(#COM_OWNER) TabPosition(1) Top(24) ErrorText('ERROR - Min 6 chars, one upper|lower|number') HelperPosition(Bottom) Height(68) Width(377) HelperText('Min 6 chars, one upper|lower|number')

Evtroutine Handling(#Edit.Changed)

#Edit.Error := *Not #Edit.Value.IsValidPassword( Medium )

Endroutine

End_Com

See also

All Component Classes

Technical Reference

  • No labels