Hi
In our grid we are manually updating dataSource.dataSource. Then we are using this.grid.refreshView() method. as per documentation grid should refresh with updated dataSource. But in our case it is not updating grid cells.
this is how our code is.
source ={
dataSource: res,
dataFields: AllRoomConstants.dataFields
};
this.dataSource = new Smart.DataAdapter(this.source);
method(){
this.source.dataSource[0][‘columnName’]=”dataupdated”;
this.grid.refreshView();
}
if we are using this.dataSource = new Smart.DataAdapter(this.source) instead of this.grid.refreshView() it will work.
Thank you for your help and looking forward to your early reply.
Thanks
Nikhil Jain