To display dependent information
in our programs we usually use trigger on value-changed:
<pre>
on value-changed of {&browse-name} in frame {&frame-name}
do:
run display-dependent-info .
end.
procedure display-dependent-info
:
do with frame {&frame-name}:
if available _table-name_ then do:
/* display additional information */
end.
end.
end.
</pre>
Trigger row-display is usually used to enable/disable
input in updatable browse or change color of some lines in browse.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.