Hi, I'm trying to update values of a ListGridRecord from a JavaScriptObject
but the Grid doesn't refresh the field values. Do I need to call something else?
If I manually update the fields from JSO properties it works fine
Code:
record.setJsObj(myJSO); myGrid.refreshRow(recordIndex);
If I manually update the fields from JSO properties it works fine
Code:
record.setAttribute("status",myJSO.getStatus()); record.setAttribute("description",myJSO.getDescription()); ... myGrid.refreshRow(recordIndex);