Page 1 of 1

Change background colore in jqcomboboxEx

PostPosted: 25 Aug 2015 13:56
by Wissem_B
Hi guys,

i try to change the color of jqcomboboxEx ( with Extraheader Solution) but in vain, could you help me please with some example how to do that.

Thank you very much.

Re: Change background colore in jqcomboboxEx

PostPosted: 25 Aug 2015 14:54
by Alexander Bulei
Hi,

First you need define the custom css of comboboxex:

delphi code
IWCGJQComboBoxEx1.Css:= 'my-custom-comboboxex';


then, in extraheader:

Code: Select all
<style>
.my-custom-comboboxex a.ui-selectmenu {
    background: red;
    border-color: green;
}
</style>


Remember, all style are controlled from selected jquery ui theme.

Best Regards.