[CLOSED] [1.2.3] Problem using ComboBox as an editor in the grid
Hi.
While using a ComboBox as an editor in the EditorGrid, a ClassCastException occurs in this line:
(Editor.java - startEdit method)
Code:
field.setValue(preProcessValue(value));
My guess is that, when using ComboBox, we should assign the value using setRawValue.
So it would be like this:
Code:
if (field instanceof ComboBox) {
field.setRawValue(preProcessValue(value));
} else {
field.setValue(preProcessValue(value));
}
Is someone able to recreate this?
Regards,
Michel.