EasyUI Forum

General Category => EasyUI for jQuery => Topic started by: rezzonico on April 24, 2018, 04:06:00 AM



Title: combobox + css
Post by: rezzonico on April 24, 2018, 04:06:00 AM
Hi all,

I have two combobox.

The first is a readonly combobox, the second is disable.

The css style of the first combobox (readonly)  must be equal to the style of the second combobox (disable).

How can I do this ?

Thanks
Miche


Title: Re: combobox + css
Post by: jarry on April 24, 2018, 05:30:57 PM
Please set the 'readonly' and 'disabled' styles as:
Code:
<style type="text/css">
.combo.textbox-readonly{
opacity: 0.6;
}
.combo.textbox-disabled{
opacity: 0.6;
}
</style>


Title: Re: combobox + css
Post by: rezzonico on April 26, 2018, 09:00:50 AM
Thanks !

Miche