Hi All,
I want to check the modified row’s cells is blank or not when user click on save icon.
please suggest me if any api method is responsible to check the validation before the save operation.
Below method is responsible to save the data.
function f_update(){
lazyGrid.editStop();
if(lazyGridDP.updatedRows.length>0) {
lazyGridDP.sendData();
} else {
alert(‘Nothing to Save…’);
}
}
Thanks & Regards,
Abhi