I have a grid where one cell needs to be presented with subscript and superscript formatting.
The cell type is coro with the additional select/options definition:
cbbEquationType = oGrd.getCombo(cInd_EquationType);
cbbEquationType.put("1","a*(x<sub>1</sub>)<sup>2</sup>+b*(x<sub>1</sub>)+c");
cbbEquationType.put("2","a*x<sub>1</sub>*x<sub>2</sub>");
When not editing, the cell displays as expected. However, when editing, the select options are raw text (i.e. not HTML-formatted):
Is there a way to display the select options with HTML formatting applied?