Browser Selector bar

cthulhugeek

New Member
Hello,

When you create a browse widget, you have the selection bar that highlights where you are in the list. Currently the selection bar highlights all the fields in the browser widget. Can you change it so only some of the fields in the browser light up as you scroll up and down? The reason I ask is that we have different colors on some fields to siginfy different things. But when the selector is on those records you can not see the different color of that row. So if there is only one record you can not see what color the text is because it is lit up by the selection bar.

Any thoughts would be greatly appreciated.

Don
 

kartikeya.sharm

New Member
Hi buddy,

Try this after if you are using smart-window then after initializeObject procedure
else you can write in main-block after enable-ui

IF {&BROWSE-NAME}:NUM-ITERATIONS = 1 THEN
{&BROWSE-NAME}:DESELECT-FOCUSED-ROW().
 
Top