Hello
I am working on a project with a master page. In the content page I have a user control.
Please see the following schema in the file attachment.
Inside the user control there is a RadGrid. There is also an asp:panel and inside it a
custom footer made from dynamic controls.
We added a RadAjaxManagarProxy with the following settings inside the user control:
Radgrid --> Radgrid
Asp_panel --> Asp_panel
Asp_panel --> RadGrid
The content page contains the user-control.
When I press on a control in the master page, I want the RadGrid be update.
How I do that?
I have tried to set the Ajax manager in the master page programmatically: (VB.NET)
None of the above works.
Thanks.
Daniel
I am working on a project with a master page. In the content page I have a user control.
Please see the following schema in the file attachment.
Inside the user control there is a RadGrid. There is also an asp:panel and inside it a
custom footer made from dynamic controls.
We added a RadAjaxManagarProxy with the following settings inside the user control:
Radgrid --> Radgrid
Asp_panel --> Asp_panel
Asp_panel --> RadGrid
The content page contains the user-control.
When I press on a control in the master page, I want the RadGrid be update.
How I do that?
I have tried to set the Ajax manager in the master page programmatically: (VB.NET)
Dim MyGridUControl0 As UserControl = CType(MainContentPlaceHolder.FindControl("UC_Grid_Footer0"), UserControl)Dim MyUGrid0 As RadGrid = CType(MyGridUControl0.FindControl("RadGrid1"), RadGrid)Dim MyFooter0 As System.Web.UI.Control = CType(MyGridUControl0.FindControl("Panel_Footer"), System.Web.UI.Control) RadAjaxManager1.AjaxSettings.AddAjaxSetting(treeView_SideMenu, MyUGrid0)RadAjaxManager1.AjaxSettings.AddAjaxSetting(treeView_SideMenu, MyGridUControl0 )None of the above works.
Thanks.
Daniel