This question is locked. New answers and comments are not allowed.
What is the best way to update the data in the grid?
I'm creating the grid like this.
If I update the data object how can I make the grid reflect the changes?
Thanks
Chris
I'm creating the grid like this.
var data = [ { Name: "One", Data: 1 }, { Name: "Two", Data: 2 }, { Name: "Three", Data: 3 }];var grid = new Telerik.UI.RadGrid(this.gridElem, { dataSource: { data: data }});If I update the data object how can I make the grid reflect the changes?
Thanks
Chris