Check documentation for the latest version of dhtmlxSuite saveBatch DHTMLX Docs

saveBatch

Makes simultaneous saving several components (batch saving).

void saveBatch();

Example

data.saveBatch(function(){
        myForm1.save();
        myForm2.save();
});

Details

where myForm1, myForm2 - forms bound to DataStore.

Back to top