"item_modified" trigger
Description
void ItemModifiedTriggerFunctionName(char oldValue);Example
void emps.has_car(char oldValue) {
if ( :emps.has_car == "E" ) then
show_block("cars", true);
else
hide_block("cars", true);
end if;
}Last updated