Enable/Disable issue.

karikalanr

New Member
Hi,

In Appbuilder, I am placing two UI widgets Fill-in Field and Toggle-box. I have an unselected Enable property to make it diable. If we check the look and feel in execution mode, label of toggle-box is gray colour but label of Fill-in field is in as usual appreance.(Though both of the widgets are disabled.)

My intention to make these two widgets look and feel as consistent one, I am trying to make label of toggle box to appear it in as like Fill-in field label.(ie., toggle box will be in disabled mode but the colour of label is in normal look.)

Could you please give me some tips, Is it really possible to make it out?

Thanks,
Karikalan R
 
first thing that comes to mind is:

Set the label to toggle-box to blank
add another label in front of it (text field).

-Parul.
 
This will not be applicable as per my requirement, because my application is entirely based on dynamic programming(templates, widgets,generic procedures.) On the fly n number of objects will be integrated to build the screen. Its not possible to add static text field on the minimum of 500 screens.

If you could suggest anything related to change the property of toggle-box, that would be great.

Thanks,
Karikalan R
 
OK heres another try:

DEFINE VARIABLE sidehandle AS HANDLE NO-UNDO.

ASSIGN sidehandle = FILL-IN-1:SIDE-LABEL-HANDLE IN FRAME {&FRAME-NAME}
sidehandle:FGCOLOR = 8.

to change the color of label of fill-in.

-Parul.
 
Back
Top