Form specification files / Form item attributes |
The COMMENT attribute defines hint for the user about the form element.
COMMENT = [%]"string"
The most common use of the COMMENT attribute is to give information or instructions to the user.
This attribute is also an action attribute that can be defined in the ACTION DEFAULTS section of a form or directly in an action view (BUTTON), see COMMENT action attribute for more details.
-- As action default ACTION DEFAULTS ACTION print (COMMENT="Print current order information") END -- In a form field definition EDIT f1 = customer.name, COMMENT = "The customer name"; -- In a form buttom BUTTON b1: print, COMMENT = "Print customer details";