The radbutton does not support the onclientclick property as outlined below:
The ASP button will present a delete confirmation in a formview. The telerik button will not. Is there a way to get this to work with the Telerik button?
Regards, Lee
<asp:Button ID="Button1" runat="server" CausesValidation="False" CommandName="Delete" Text="Delete" OnClientClick="return confirm('Are you certain you want to delete this Customer?')" BackColor="#3333CC" Font-Bold="True" Font-Names="Arial" Font-Size="X-Small" ForeColor="White" /> <telerik:RadButton ID="RadButton6" runat="server" CausesValidation="False" CommandName="Delete" Text="Delete" Skin="Web20" OnClientClick="return confirm('Are you certain you want to delete this Customer?')"> </telerik:RadButton>The ASP button will present a delete confirmation in a formview. The telerik button will not. Is there a way to get this to work with the Telerik button?
Regards, Lee