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
80
How to Disable the postback on a WebDataMenu
posted

<asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional">
        <ContentTemplate>
            <ig:WebDataGrid ID="UGDest" runat="server" EnableAjax="false" EnableDataViewState="true">
                <ClientEvents MouseDown="MenuItem_Click" />
                </ig:WebDataGrid>
            <ig:WebDataMenu ID="ContextMenu" runat="server" IsContextMenu="true">
            </ig:WebDataMenu>
        </ContentTemplate>
    </asp:UpdatePanel>

here we are using webdatamenu, while click on menu need to disable postback.