The question is the same as I wrote in header: "How Disable ASPxButton after click to prevent double clicking using javascript on front code side?" In asp.net i can do this operation like this:
<asp:Button ID="btnSubmit" runat="server" Text="Submit"
OnClick="btnSubmit_Click"
UseSubmitBehavior="false"
OnClientClick="this.disabled='true'; this.value='Please wait..';"/>
and it works correctly. In Dev express i tried to do that similarly:
<dx:ASPxButton ID="btnSubmit" runat="server" Text="Submit"
OnClick="btnSubmit_Click"
UseSubmitBehavior="false">
<ClientSideEvents Click="this.disabled='true'; this.value='Please wait..';" />
</dx:ASPxButton>
but it doesnt work correctly.. What I'm doing wrong and how to fix it?