Data Processor varificator

how can i restrict data verificator to verify just once cell rather than verifying entire row?

You can use
setVerificator method. This method specify column which value should be
verified before sending to server. Please find example here dhtmlx.com/dhxdocs/doku.php?id=d … erificator

Hi,
This example is also the same, if i edit one cell and click update it will also verify the other cells for that particular row. I want to edit only one cell then it should only verify one cell and send the data to the server, not like the one which is in the example.

Thanks,
brijendra

This example is also the same, if i edit one cell and click update it will also verify the other cells for that particular row
You should define verificator only for one necessary column.

Can you please tell me how to do that, right now the reference codes i see, its applied on the entire row.
if i use code below:
dp.setVerificator(0, some_function);
dp.setVerificator(3, some_function);

in this case verificator will verify both the columns in a row.
I did not found it in any documentation.
is there a method which restricts verificator to verify only one cell.
 

in this case verificator will verify both the columns in a row.
You want to verify only one cell from the row, don’t you? Then you should leave only:
dp.setVerificator(0, some_function); //verify only 1st cell.
some_function will be called only for the 1st cell from the cell, other cells from the row will not be verified.

setVerificator method pass following parameters to the some_function:
* value - value of the cell which should be verified
* rowId - id of the row
* cellIndex - index of a cell

function some_function(value,rowId,cellIndex){
if (value=="") return false;
else return true;
}