dhtmlxGrid last row's setVerificator function not working


I am using dhtmlxGrid v.2.0 Professional edition build 81009/81107



when I add a new row, following 3 lines not working at grid’s last row,

myDataProcessor2.setVerificator(0);

myDataProcessor2.setVerificator(1);

myDataProcessor2.setVerificator(1,validateEmail);







addressbook

    

    



    

    

    

    



.grid_hover {

background-color:#7FFFD4;

font-size:20px;

}

    

    























add row


delete row


save data     











Please try to replace your dhtmlxdataprocessor.js file with file from attachment. If issue still occurs please provide us complete example where we can reproduce it.
dhtmlxdataprocessor.zip (5.02 KB)


I set setUpdateMode(“off”). User need press “savedata” button to senddata to server site




This version “dataprocessor” have following problems



1. after press “add row”, all these setVerificator function not working ( if I add two rows or more, same situation)



2. after save the data, all these setVerificator function are working



3. column sorting function not working

Unfortunately we cannot reproduce this issue locally. Please provide us complete example where we can reproduce it.


My program as follow: aspx file with c#



<%@ Page Language=“C#” %>










 AddressBook
     
 
   
     
 <script  src=“…/dhtmlxSuite/dhtmlxGrid/codebase/ext/dhtmlxgrid_srnd.js”>
 <script  src=“…/dhtmlxSuite/dhtmlxGrid/codebase/ext/dhtmlxgrid_filter.js”>   
 

    .grid_hover {
        background-color:#7FFFD4;
        font-size:20px;
    }
 
 













please remember press[Save data]button。


新增資料行

delete row
   
Save data   









addressbook_contactor_get.aspx will generate following xml string



<?xml version="1.0" encoding="utf-8"?>

 
    groupdpt1dpt1-1dpt2dpt2-1dpt-3dpt-31
    name
    email
    title
 
 
    12
    frank1
    aa@aa.mm
    pos1
 
 
    12
    sss
    aa@ssf
   
 
 
    13
    frank2
    dd@aa.vv
    pos2
 
 
    14
    frank3
    cc@xx.cc
   
 




 


addressbook_contactor.aspx (4.94 KB)