Hi Hristo,
Here is the jsFiddle i created.
http://jsfiddle.net/0g0cocaz/4/
What i am trying to do is end the cell edit when a user selects a value in the column dropdown. this seems to be working for a few times and then the initeditor stops working for no reason….i click through some cells (10-15 times) and then the combobox doesn’t showup when i click in the cell.
createeditor: function (row, value, editor) {
editor.jqxComboBox({ source: countriesAdapter, displayMember: ‘label’, valueMember: ‘value’ });
},
initeditor: function(row, value, editor) {
editor.on(‘select’, function(event) {
$(“#jqxgrid”).jqxGrid(‘endcelledit’, row, “countryCode”, false);
editor.off(‘select’);
console.log(event);
})
}