Check documentation for the latest version of dhtmlxSuite clearVerificator DHTMLX Docs

clearVerificator

cancels verifying of a column

void clearVerificator(number index);
indexnumberthe column's index

Example

myDataProcessor.setVerificator(1,not_empty);
 
function not_empty(value,id,ind){
    if (value=="") mygrid.setCellTextStyle(id,ind,"background-color:yellow;");
    return value!="";
}
 
myDataProcessor.clearVerificator(1);

Related samples

Details

Beware, the method is used for the Grid component only.

See also
Back to top