Hi,
I have a dataprocessor connected to a grid. The grid should contain the primary key returned from the select query but it doesn’t.
My connector is initialised as follows:
connector = New dhtmlxGridConnector(
"Select id, Username, AreaID, PointNumber, AreaName, AreaDescription, Latitude, Longitude from AssetTrackAreas where (PointNumber <> 0) order by PointNumber",
"id",
dhtmlxDatabaseAdapterType.SqlServer2005,
ConfigurationManager.ConnectionStrings("myDatabase").ConnectionString)
The connector returns all fields except id (which is the primary key).
This worked fine with the versión 0.9.8.3 of the .NET.dll but it doesn’t work with versión 1.1.0.0
What is wrong?