I use a combo box on panel and as I know we can add items with the text only
comboBox.addItem('item text');
But some times I need to use some value of the item and item text like in html select:
<select><option value="item_value">Item Text</option></select>
Is there any way to set both value and title in combo box item?
For now I use a hash to solve this issue.