I have problems with the refresh of the records in Rad Grid.
I have a form into panel where I edit items of the Rad Grid, but when I Save the data the Rad Grid is not updating its content.
I tried with myRadGrid.MasterTableView.Rebind() after the data saving.
Also I trying calling a method to update the rad grid content after save the data.
Any ideas?.
Thanks in advance
I have a form into panel where I edit items of the Rad Grid, but when I Save the data the Rad Grid is not updating its content.
I tried with myRadGrid.MasterTableView.Rebind() after the data saving.
Also I trying calling a method to update the rad grid content after save the data.
Any ideas?.
Thanks in advance
| private void GetRadGridData() |
| { |
| try |
| { |
| myRadGrid.ControlStyle.Reset(); |
| myRadGrid.DataSource = GetData(); |
| myRadGrid.DataBind(); |
| } |
| catch (Exception ex) |
| { |
| Master_Cat.HandleException(ex); |
| } |
| } |