I have a UI that contains a button and a listgrid. When the user clicks on a button, the selected row data of the listgrid may or may not change in the server side. I want to be able to fetch any new data regarding this row without fetching the whole data list. I've tried setting fetch criteria but this replaces the whole data list. Is there any way to just update this one row? I tried calling updatedata like below but it does not reach my ds request processor
grid.updateData(null, null,{showPrompt:false, cwPK__:id, cwIsFetchByData:true});
grid.updateData(null, null,{showPrompt:false, cwPK__:id, cwIsFetchByData:true});
Comment