Browse scroll-notify trigger

Fugey00

New Member
Hi to all!

i'm using 8.3B chui ion HP-UX 10.20B.

i want to use the scroll-notify trigger to display detail info of the current line in the browse, but the trigger doesn't work.....

anybody had this problem. the row-entry either.....:blue:


thank's a lot.....
 
U

Unregistered

Guest
Hi,

you want to be using the value-changed trigger or the row-display trigger.

PS

If you think an Honda civic is the best you have not driven many cars. ie.

Subaru WRX STi RA
Mitso Evo 6 Sprint
.
.
.
 

m1_ru

New Member
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.
 

Fugey00

New Member
thank's guy's

and as for the subaru :awink:
the evo 6 not in canada.....


still wonder why value-changed instead of scroll-notify......:confused:
 
The scroll notify trigger is used so you can position widgets over the top of the browser.

value-changed is fired when a row selection is changed.


.
.
Shame that you don't get decent cars or motorsport over there.

Thought you did get de tuned scooby though. What about intregra type R's ?
 

Fugey00

New Member
thank's chris for the info.

but why the trigger did'n't fire at all.

i put a message alert-box in it and didn't see it...

probably a progress bug.... that we don't have the patch and we can't have anymore....
 
Top