Inconsistency when displaying combo text

HI,
I am faced with a UI inconsistency issue. When I choose multiple elements in the combo and tab out I have an onBlur event which sets the combo text as “Various”. The Various text shows without a checkbox. However if I click on any of the elements in the combo list, the combo text is shown with a checkbox. Thus the UI becomes inconsistent. Can I get this behavior consistent?
Ideally showing a checkbox in the combo text doesn’t make sense, since it doesnt signify anything.
I am attaching the screenshot for better understanding.

Thanks,
Sunil

Hi,

you may use the following to hide checkbox in combo header:

combo.DOMelem_checkbox.style.display = “none”

Thanks…It worked :smiley: