Hi ,
I’m using dhtmlx version 2.6
DataProcessor has been stoped after getting following massage:
<?xml version="1.0" encoding="utf-8"?>Table 'loyalty.pd_group1' doesn't exist - 12:32:05User has to change the row when it stops then press save again. In other word, dataprocessor doesn’t send data to server for the second time.
Please help me.
myDataProcessor = new dataProcessor('./index.php?isxml=1&folder=./Modules/admin/usersgroup&pageName=update');
myDataProcessor.setTransactionMode('POST','false'); //set mode as send-all-by-post
myDataProcessor.setUpdateMode('off'); //disable auto-update
myDataProcessor.enableDataNames(true); //will use names instead of indexes
myDataProcessor.enablePartialDataSend(true);//send afected fielsd to server (no all fields)
myDataProcessor.init(mygrid);
myDataProcessor.defineAction('error',function(response){
myDataProcessor.stopOnError = true;
alert(response.firstChild.nodeValue);
return true;});
// myDataProcessor.enableDebug(true);
function dataProcessorSendData()
{
myDataProcessor.sendData();
}