Hi
I am using Normal editmode and Single Click to start the edit like this:
load: function () {
this.$refs.grid.ej2Instances.element.addEventListener(
"mouseup",
function (e) {
var instance = this.ej2_instances[0];
if (e.target.classList.contains("e-rowcell")) {
if (instance.isEdit) instance.endEdit();
let index = parseInt(e.target.getAttribute("Index"));
instance.selectRow(index);
instance.startEdit();
}
}
);
},
Also I am not using the toolbar and disable the showConfirmDialog:
editSettings: {
allowEditing: true,
showConfirmDialog: false,
allowAdding: false,
allowDeleting: false,
mode: "Normal",
},
But somehow, the Datasource not changes after I edit the data in grid.
Is it because i didn't confirm the changes? How can i make those changes apply to the datasource?