Grid Connector different from Form Connector

I use Connector skill to perform data operation with database.

I try to use a grid as connector skill for loading. It is OK.

The Grid Connector code is below :


SQLString = "DBConnector.ashx?strSQL=Select TABLE_TYPE, FIELD_NAME, FIELD_DISPLAY_NAME FROM MASTER_PARAMETER_DEF WHERE TABLE_TYPE = '" + stringTabletype + "'" ;

   gridResult.loadXML(SQLString); 

I want to ask how about the Grid skill change to Form skill ?

It is work ? And How about the method ?

If you need to load only data in form - it works the same
docs.dhtmlx.com/doku.php?id=tuto … ading_data

If you need to load configuration - it can be loaded from external file, but there is no related connector.

Stanislav,

Simply, I want to ask a form’s data saving to a connector ?

I use a form to get a new record including some fields. Then the new record need to save to a connector.

How about it ? it is work ?

You can use dataprocessor with form

docs.dhtmlx.com/doku.php?id=tuto … alone_form
docs.dhtmlx.com/doku.php?id=tuto … alone_form

Stanislav,

I have studied your example. But the dp type is .


var mydp = new dataProcessor ('php/formdata.php');

I am to use MS SQL 2008 R2 which use as database type.

I want to ask it is work ? and how about the method ?

Thanks for your help !

Ivan

Above sample uses php ( which can work with any db type, including mssql actually )
If you need to use .Net - the same sample will work, but with .Net code - dhtmlx.com/x/download/regula … or_net.zip