Hi All ,
In my application , I am using a global variable which is a set of radio buttons like (a , b , c, d) .
Now I need to dynamically deactivate radio buttons like .
To some user radio ‘a’ will be deactivated .
To some user radio 'b’will bw deactivated .
Finally , I need to make my radio button group in such a manner it will dynamically change the state (like active / inactive)
What is the point in showing options that are unavailable to a user?
If you use a custom valuelist, you can redefine it onRecordSelection or onShow using application.setValueListItems() to show only the options you want.
I dont think you can do what you describe. You can activate or deactivate the whole field, but not parts of it.
Have you thought of changing the values in the value list for this field depending on user/options etc? So User A sees “a,d” whereas User B sees “c,d”. This would have the same effect.