Hi,
There are two panels: PanelB embedded inside PanelA. I would like BUttonA to update the whole PanelA (including PanelB)P but ButtonB - to update PanelB only.
The markup is the following:
But the effect is that when I click ButtonB the whole PanelA is updated.
How can I achieve my goal?
Regards
Tomasz
There are two panels: PanelB embedded inside PanelA. I would like BUttonA to update the whole PanelA (including PanelB)P but ButtonB - to update PanelB only.
The markup is the following:
| <telerik:RadAjaxManager ID="AjaxManager" runat="server"> |
| <AjaxSettings> |
| <telerik:AjaxSetting AjaxControlID="ButtonA"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="PanelA" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| <telerik:AjaxSetting AjaxControlID="ButtonB"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="PanelB" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| </AjaxSettings> |
| </telerik:RadAjaxManager> |
| <div runat="server" id="PanelA"> |
| <asp:Button runat="server" ID="ButtonA" Text="ButtonA" /> |
| <%-- some PanelA stuff --%> |
| <div runat="server" id="PanelB"> |
| <asp:Button runat="server" ID="ButtonB" Text="ButtonB" /> |
| <%-- some PanelB stuff --%> |
| </div> |
| </div> |
How can I achieve my goal?
Regards
Tomasz