MultiColumn Combo

How may I apply a color and font-weight style to an individual option row of a multi-column list?
Thanks!

Hi

use css attr:
myCombo.addOption([
{value: “some_value”, text: { column_a: “text”, column_b: “more text”, …}, css: “font-weight:bold; color:magenta;” },

]);