Hi,
I'm using an external button to trigger my batchUpdate, when using the toolbar update button, everything works perfectly and I get the right action called within my controller and having a list of the changes.
But when I want to do it manually :
function externalButtonClick(){
var gridObj = document.getElementById('Grid').ej2_instances[0];
gridObj.batchUpdate(); //
}
I guess I would need to provide myself the changes as parameters of the batchUpdate method, but I don't know how to get them, is there a property in my gridObj where I can access the changes ? Or any other way ?
Thanks for the help, if you need any more information I'll gladly upload some more or screenshots.