You can use the connectors for simple form saving. The connectors will recognize and automatically execute CRUD operations for the following patterns:
GET: connector.php?action=get&id={some}
Returns: data in 'json'(if you use JSONDataConnector) or 'xml'(if you use DataConnector) format.
GET: connector.php?action=delete POST: id={some}
Returns: “true” as string, when operation is executed correctly.
GET: connector.php?action=delete POST: id={some}&property_name={value}
Returns: “true” as string, when operation is executed correctly.
GET: connector.php?action=insert POST: property_name={value}
Returns: “true\n{new id}” as string, when operation is executed correctly.
Basically, for DHTMLX Touch components to save data you can use the following code:
dhx.ajax().post("connector.php?action=insert", $$('form').getValues());