Here is the use case:
var data = [{name: "Joe", age:30}
, {name:"Tom", age:29}
, ....
];
and I have a grid on top of this data source, when user update single entry of it(say via input with ngModel),
say updated "Joe" to "Chris", I want to refresh a grid's row, I'm using refreshGrid to update the whole grid and reselect and refocus row/cell right now,
thought be something better there, Is there any method can refresh just one part of row, was using angular ui-grid before which handles
stale check of data can make specific cell update, is there any way can do row/cell update?
We are using it for mobile apps(Cordova on Android), it is quite slow to refresh a grid just for one value update.