I'm currently using Infragistics Grid with in-line editing similar to this example: http://www.infragistics.com/community/blogs/mihail_mateev/archive/2011/09/25/using-crud-operations-with-jquery-iggrid-entity-framework-and-and-asp-net-mvc3.aspx.
I'm running into an issue in that most of the data on the grid is persisted with a GUID key as multiple existing databases are being referenced. The issue is that while I can create a hidden column for these GUIDs that will push them to the UI, when accessing the row from Infragistics, all hidden data is discarded (empty GUIDs end up in the JSON).
I've tried hiding the columns both through Infragistics and by simply hiding them through jquery, but the way Infragistics accesses the data seems to discard anything with display:none set.
Is there a way to reference the keys without having them displayed? I've used the comboFor editor within the grid, but there still ends up being no way not to expose the valuekey when the grid updates from a change.