Required library edition:
Required library file: dhtmlxdataprocessor.js
specify column which value should be varified before sending to server
//check if first column values is not equal to 0 myDataProcessor.setVerificator(0,greater_0); function greater_0(value){ return value>0; } //check if second column values is not empty myDataProcessor.setVerificator(1,not_empty); function not_empty(value,id,ind){ if (value=="") mygrid.setCellTextStyle(id,ind,"background-color:yellow;"); return value!=""; }