DHTMLX Docs & Samples Explorer

ignore(code)

Required library edition: This method works with any edition of DHTMLX library
Required library file: dhtmlxdataprocessor.js

allows to execute commands which will not trigger dataprocessor

  • code - code block, any operation in which, will not cause dataProcessor reaction
    dp.ignore(function(){
          mygrid.addRow(1,"new row");
          mygrid.deleteRow(123);
    })