Hello! I have a question! I'm using the RadGrid and there I have FormSetting which is again RadGrid! Second grid, I use to display more information. To edit record in the inner grid, I use Radwindow! How can I update the internal grid? How to get it in the event protected void RadAjaxManager1_AjaxRequest(object sender, AjaxRequestEventArgs e)? How I can do this? THANKS!!)))
4 Answers, 1 is accepted
0
Accepted
Hello Timyr,
Can you elaborate a bit more what is this inner grid, is it a RadGrid in NestedViewTemplate or a GridTableView in the DetailTables collection? If it is the first case, then you can wrap the inner grid into RadAjaxPanel. Then you the client ajaxRequest() method of the panel to invoke ajax and handle the ajax request in the AjaxRequest server-side event of the panel. If you are in the second case, you should add a setting where the RadAjaxManager updates the whole grid. Then in the manager ajaxRequest() client method specify which if the nested views should be rebound.
Kind regards,
Iana
the Telerik team
Can you elaborate a bit more what is this inner grid, is it a RadGrid in NestedViewTemplate or a GridTableView in the DetailTables collection? If it is the first case, then you can wrap the inner grid into RadAjaxPanel. Then you the client ajaxRequest() method of the panel to invoke ajax and handle the ajax request in the AjaxRequest server-side event of the panel. If you are in the second case, you should add a setting where the RadAjaxManager updates the whole grid. Then in the manager ajaxRequest() client method specify which if the nested views should be rebound.
Kind regards,
Iana
the Telerik team
Thank you for being the most amazing .NET community! Your unfailing support is what helps us charge forward! We'd appreciate your vote for Telerik in this year's DevProConnections Awards. We are competing in mind-blowing 20 categories and every vote counts! VOTE for Telerik NOW >>
0

Timyr
Top achievements
Rank 1
answered on 07 Sep 2011, 08:46 PM
OO Thanks!! But I dont't understand how I get a inner Grid (control) to rebind it in RadAjaxPanel1_AjaxRequest, because I can't refer to it directly!(
0
Accepted
Hello Timyr,
You can try parsing the hierachical index of the some of the items of the particular grid table view to the ajaxRequest() method. Then on the server, you should be able to find the proper GridTableView.
For more informaiton on RadGrid hierarchical structure, check this topic.
Best wishes,
Iana
the Telerik team
You can try parsing the hierachical index of the some of the items of the particular grid table view to the ajaxRequest() method. Then on the server, you should be able to find the proper GridTableView.
For more informaiton on RadGrid hierarchical structure, check this topic.
Best wishes,
Iana
the Telerik team
Thank you for being the most amazing .NET community! Your unfailing support is what helps us charge forward! We'd appreciate your vote for Telerik in this year's DevProConnections Awards. We are competing in mind-blowing 20 categories and every vote counts! VOTE for Telerik NOW >>
0

Timyr
Top achievements
Rank 1
answered on 12 Sep 2011, 02:28 PM
Thanks it work!))))