Last updated 5 years ago
Was this helpful?
item_modified trigger function is optional. if it is needed, it must be in . Whenever a control/data block item's value has been changed, item modified trigger is fired.
item_modified
Declaration
Trigger function's name should conform to the following format:
blockName + "." + itemName
void ItemModifiedTriggerFunctionName(char oldValue);
void emps.has_car(char oldValue) { if ( :emps.has_car == "E" ) then show_block("cars", true); else hide_block("cars", true); end if; }