How can I disable a RadButton afert user clicked it and have a postback? I try following code in OnClientClicked event:
$('#<%=RadButtonProcess.ClientID%>').prop('disabled', true);
The button is disabled but the postback is not fired. I don't know how to continue the postback after disable the button?
$('#<%=RadButtonProcess.ClientID%>').prop('disabled', true);
The button is disabled but the postback is not fired. I don't know how to continue the postback after disable the button?