Hi,
I've the following issue; I need to display the readonly Combo with a different color since the default grey is not visible on some laptops.
Combos are set readOnlyonly if the user is readOnly therefore I'd like to change with CSS and not into the view (is a MVC application).
Is it possible?How Can I do it?It should work for IE8
Thank you in advance
Kind regards
Simone
Hi Simone,
You can try the following CSS if you want all the igCombo's which are set with (mode: "readonly"):
.ui-igcombo input[readonly] { background-color: #E0E0E0;}
If you want to style only one igCombo by id then the use the following CSS:
#combo1 input[readonly] { background-color: #E0E0E0;}
Hope this helps,Martin PavlovInfragistics, Inc.
Hi Martin,
thank you for your answer but it still doesn't work. I' ve added the code in infragistics.theme.css where the height and width of igcombo are correctly set.
Anyway stille the text of readonly combo is gray an not really readable. Is this behaviour somehow overulled?
Maybe I need to change some value non on igcombo but onreadonly text?