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
1805
refreshing WebExplorerBar on button click
posted

Folks,

How can i refresh WebExplorerBar data on mutton click?

Like Ajax does it with UpdatePanel trigger..

Thanks in advance..

Parents
  • 1805
    posted

    Here is my code

                    <asp:UpdatePanel ID="UpdatePanelExplorerBar" runat="server" UpdateMode="Conditional">
                    <ContentTemplate>
                        <ig:WebExplorerBar ID="WebExplorerBar1" runat="server" Width="195px" GroupContentsHeight="" meta:resourcekey="WebExplorerBar1Resource1" StyleSetName="IG" UpdateMode="Conditional">
                            <AutoPostBackFlags ItemClick="Async" ItemSelected="Async" />
                        </ig:WebExplorerBar>
                    </ContentTemplate>
                        <Triggers>
                            <asp:AsyncPostBackTrigger ControlID="btnSubmit" EventName="Click">
                            </asp:AsyncPostBackTrigger>
                        </Triggers>
                    </asp:UpdatePanel>   
    Any Ideas?
Reply Children