1. in my drop function, I'm setting a text value in the drop row's column, but when I call getChanges, the grid doesn't detect the change. If I manually change the text value, getChanges detects the change. How can I register the change in code? The below code doesn't detect the change.
drop: function (evt, uiDrop) {
uiDrop.rowData.id = "my new value that isnt detected"
uiDrop.rowData.id1 = "mote new text"
}
var gridChanges = $gridMain.pqGrid("getChanges", { format: 'byVal' });