Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
205
updatepanel issue on button click
posted

Normal 0 false false false EN-US X-NONE X-NONE

 

 

I created an updatepanel  inside the webexplorerbar and added a button in it.
 the onClick event of button was not
not fired at all, please see code below:

 


    <form id="form1" runat="server">
    <div>
        <asp:ScriptManager ID="ScriptManager1" runat="server">
        </asp:ScriptManager>
        <ig:WebExplorerBar ID="WebExplorerBar1" runat="server" GroupContentsHeight="" Width="250px">
            <Groups>
                <ig:ExplorerBarGroup GroupContentsHeight="" Text="Group">
                    <Items>
                        <ig:ExplorerBarItem TemplateId="Template1" Text="Item">
                        </ig:ExplorerBarItem>
                    </Items>
                </ig:ExplorerBarGroup>
            </Groups>
            <Templates>
                <ig:ItemTemplate ID="WebExplorerBar1Template1" runat="server" TemplateID="Template1">
                    <template>
                        <asp:UpdatePanel ID="UpdatePanel1" runat="server">
                            <ContentTemplate>
                                <asp:Button ID="Button1" runat="server" Text="Button" onclick="Button1_Click" />
                            </ContentTemplate>
                        </asp:UpdatePanel>
                    </template>
                </ig:ItemTemplate>
            </Templates>
            <AutoPostBackFlags ItemClick="On" />
        </ig:WebExplorerBar>
    </div>
    </form>

Any help will be appreciated

Parents
No Data
Reply
  • 49378
    posted

    Hi usiddiqi,

    Thank you for posting in the community.

    In this scenario the autopostback which takes place upon item click seems to be suppressing the callback generated by clicking the templated button . Turning the autopostback on itemClick off (using version 11.2.20112.2086) seems to resolve the matter.

    Please let me know if this helps.

     

Children