hi thank you soo much, i have achieved this with following code,
updaterow: function (rowid, rowdata, commit) {
// synchronize with the server – send update command
var oldV = oldvalue;
var newV = args.value;
if(args.columntype == ‘datetimeinput’){
var oldDate =oldV.getDate() +””+ oldV.getMonth() +””+ oldV.getFullYear();
var newDate =newV.getDate() +””+ newV.getMonth() +””+ newV.getFullYear();
oldV = oldDate;
newV = newDate;
}
if(oldV != newV){
if(confirm(“Do you really want to change the data?”)){
commit(true);}
else commit(false);
}
else commit(false);
}
Thanks,
Akshatha