Thank you for your comment.
The problem is not making the DataGrids as read only, it is the fact if I change a TypeLists (which by the manual does not seem to be possible) when I save the changes no changes will be saved.
Huh perhaps I am not explaining this correctly.
Basically I have two tables in two different databases, I need the count of one and the entity collection from the other, and they have a serial number, if you will, as association. I need to populate this DataGrid and be able to modify data on the DataGrid and be able to apply to the table on the database without doing another lookup.
Basically I am trying to do the following TSQL using entities, fetchets, or whatever tool necessary on LLGLGen Pro.
SELECT Count(*) 'Enable', S.*
FROM ZSDB.dbo.tblSiteAssemblyPoint P
JOIN DVM_CI.dbo.tblSite S
ON S.CustomerSiteID = P.SiteID AND P.ProcessEnabled = 1
GROUP BY ProcessEnabled, SiteID, SiteSerialNumber, CustomerSiteSerialNumber, CustomerSiteID, SiteTemplateID, SiteTemplateTypeID, SiteStatusID, DefaultHistoryInterval, LocationID, S.HistoryID
ORDER BY 'Enable' DESC
Any ideas?
Thank you,
BrunoV