Hi!, please, it is possible to create a multiline (one item in comboxbox has two rows) in your dhtmlxCombo ? Your dhtmlxCombo is very good job, but i need multiline combobox with different CSS style for the first and the second row. thank you very much. Ivan
There are two ways
a) complex way - combo allows to extend|implement new types of options, so in theory it possible to define any type of option.
you can redefine dhtmlXCombo_defaultOption.prototype.render - which renders option view
b) simple way - combo accepts any HTML as label text so you can use code similar to next
combo.addOption(‘value’,‘
Line1
Line2
’);