Hi
I have a grouped grid where one or more groups are expanded. Sometimes a dialog is called which can change the size of the documents represented in the grid.
Thus I need to update the row dynamically without reloading the datasource.
I have tried with this but it doesnt work:
var documentVersion = callServerSync('DocumentsWebService.asmx/GetLatestDocumentVersion', { uid: selectedTextileDocument.Uid }); var gridLocalData = $("#jqxGridDocumentExplorer").jqxGrid('source').localdata; for (var i = 0; i < gridLocalData.length; i++) { if (gridLocalData[i].Uid == documentVersion.Uid) { gridLocalData[i].Size = documentVersion.Size; $('#jqxGridDocumentExplorer').jqxGrid('showrow', i); break; } }
Can you point me in the rigth direction?
Thanks in advance