Howdy,
initeditor: function (row, cellvalue, editor, celltext, cellwidth, cellheight) {
editor.jqxComboBox({autoDropDownHeight: true, source: versionList, dropDownWidth: 230});
editor.jqxComboBox('open');
},
validation: function (cell, value) {
return !(versionList.indexOf(value) < 0 && value != "");
},
I am using a combobox with a source and a validation so the user can only input what’s on the versionList.
The issue is; when the cellbeginedit fires (double click), it clears the value of the cell. When I take off the source parameter there is no issue.
Is there a short way to solve this.
Also, is it possible to block the text input from appearing to force the users to choose from the list?
Best Regards
-Salim