When i copy and paste the data in other columns and hit the save button ,it save only first row of paste and all fields does not save.
Ex. I have copied 5 lines and paste it but it save first line only.
code:
afterChange: function(changes, source){
if(source === ‘edit’ || source === ‘paste’){
if((changedRowIndexArr!=null && changedRowIndexArr.length==0) || $.inArray(changes[0][0], changedRowIndexArr) == -1){
changedRowIndexArr.push(changes[0][0]);
}
}
} ,