EasyUI Forum

General Category => EasyUI for jQuery => Topic started by: anugrast on October 16, 2016, 07:05:20 PM



Title: Combobox and Textbox Color
Post by: anugrast on October 16, 2016, 07:05:20 PM
Dear All...

Can we change/styling color of combobox, textbox, etc without affecting one and another ? How to do that?

Thx


Title: Re: Combobox and Textbox Color
Post by: stworthy on October 17, 2016, 08:11:35 AM
The code below shows how to define the inputing style and apply it to a combobox component.
Code:
<style>
.c1 .textbox-text{
color: #666;
}
</style>
<script type="text/javascript">
$(function(){
$('#cc').combobox().next().addClass('c1');
})
</script>


Title: Re: Combobox and Textbox Color
Post by: anugrast on October 17, 2016, 06:16:15 PM
Thx for your inspiration stworty...  :)