Hi,
we are using igcombo in our application, when we set the disabled property to it. The background color of the control is grayed out in IE 10 n IE11.
However in chrome it still looks as if it is enabled.
_$groupSelect.attr('disabled', 'disabled');
How do we make the igcombo look like disabled(grayed out) in chrome?
Thanks,
Kiran
Hello Kiran,
Have you been able to resolve the issue? If you need further assistance, please let me know.
Regards,
Tsanna
What element are you using to initialize the combo? Please note that <div> elements do not have a "disabled" attribute according to the HTML specification. However you may use <input> element for the combo and set the following to make it disabled: $("#combo").prop("disabled",true)
Please let me know if you need further assistance.