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

How exclude a control from ajaxify

1 Answer 123 Views
Ajax
This is a migrated thread and some comments may be shown as answers.
Li Zhou
Top achievements
Rank 1
Li Zhou asked on 24 Aug 2011, 02:46 PM
In the form, I have a submit button, when clicked, it updates the panel in the ajax way.  However, I would like to exclude a LinkButton inside the panel from getting ajaxified, is there an easy way to achieve it?  Thanks

<asp:Panel id="MyPanel" Runat="server">
 ...
     <asp:LinkButton id="MyLink" Runat="server">
 ...
</asp:Panel>
<asp:Button Runat="server" id="SubmitButton">

<telerik:RadAjaxManager runat="server" ID="ram">
    <AjaxSettings>
        <telerik:AjaxSetting AjaxControlID="SubmitButton">
            <UpdatedControls>
                <telerik:AjaxUpdatedControl ControlID="MyPanel" />
            </UpdatedControls>
        </telerik:AjaxSetting>
    </AjaxSettings>
</telerik:RadAjaxManager>

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 24 Aug 2011, 03:14 PM
Hello Li,

Check the following documentation which implements a similar scenario.Hope this helps.
Exclude controls from ajaxifying

Thanks,
Shinu.
Tags
Ajax
Asked by
Li Zhou
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or