Check documentation for the latest version of dhtmlxSuite save DHTMLX Docs

save

saves the form's data in DB

void save();

Example

myForm.attachEvent("onButtonClick", function(id){
     myForm.save();
});

Details
  • The method is purposed to be used with connectors on server-side. Names of parameters on the server-side are equal to the values of “name” attributes on the client-side.
  • In the order the method saves data in DB, the related dataProcessor object should be defined.
Back to top