Web-Client,IE:disabled TEXT_FIELD,RADIOS color change

Hi,

Is there a way to change color of disabled TEXT_FIELD, RADIOS elements? Especially for rendering via Internet Explorer as they are too bright.
For TEXT_FIELD, I’m trying with editable property but it doesn’t work as expected for RADIOS and don’t know how to configure it in run-time? Also, would need to change logic conceptually.
Using CSS from ServoyForge, does it offer more options to handle brightness?
https://www.servoyforge.net/projects/servoy-default-css

How to reach disabled fields’ brightness configuration for IE?

Regards

To add a bit more info to this problem… When you have a field on a form of display_type RADIO, and you set readOnly=true, or enabled=false, it seems to do the exact same thing. If you examine the HTML in a DOM inspector after setting readOnly=true, the code looks something like this on the element:

<div class="radio" disabled="disabled" readonly....

Then inside that div are other div’s with inputs in them, like:

<input name='xx' type='radio' disabled='disabled' readonly

So on setting readOnly=true, or enabled=false, it is setting both properties in the DOM. This is undesired, especially in IE 9, because when the disabled property is set, then IE takes over the style and makes the element very dim on the screen.

What I would like is the ability to set an RADIO element with readOnly=true, and to not have the element disabled in the HTML DOM. It actually works OK if the “input” elements are disabled, but if the “div” is disabled, then it looks very bad on IE.

can you make a case for this with a small example?
i only thought we use the disabled attribute never the readonly attribute for checks/radios

A fix for readonly/enabled on radios/checkboxes is already included in Servoy 6.0.1. This seems to have solved the appearance problem as well (the case was not related to appearance).
Can you check to see if that is what you would expect?

Fix is now merged into 5.2 branch. Should work as expected in Servoy 5.2.12.