This is a migrated thread and some comments may be shown as answers.

[Solved] Refresh RadGrid Data

1 Answer 138 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Francisco Tirado
Top achievements
Rank 1
Francisco Tirado asked on 10 Dec 2009, 04:54 PM
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
private void GetRadGridData() 
    { 
        try 
        { 
            myRadGrid.ControlStyle.Reset(); 
            myRadGrid.DataSource = GetData();
            myRadGrid.DataBind(); 
        } 
        catch (Exception ex) 
        { 
            Master_Cat.HandleException(ex); 
        } 
    }

1 Answer, 1 is accepted

Sort by
0
Francisco Tirado
Top achievements
Rank 1
answered on 10 Dec 2009, 05:25 PM
Problem solved.

Thanks.
Tags
Grid
Asked by
Francisco Tirado
Top achievements
Rank 1
Answers by
Francisco Tirado
Top achievements
Rank 1
Share this question
or