addStyleClass has no effect on comboBox component

Hi, All

I want to add ‘background-color’ in my comboBox component, I used addStyleClass but it has no effect on comboBox. How do I set background-color of comboBox dynamically if anyone has any idea, please share.

Thanks
Aijaz Ali

Hi,

css like this should do the job:

.bts-combobox.my-custom-styleclass .ui-select-match {
	background-color: red;
}

where ‘my-custom-styleclass’ is the styleclass you are trying to add.

Hope this helps