I have a few buttons on my form that I just switched from ASP to Telerik.
My form does some validation that I need these buttons to bypass.
<form id="frmCheck" onsubmit="return Frm_onsubmit();" method="post" runat="server">
<telerik:RadButton ID="btnBatchT" runat="server" Text="Print Proof Listing" UseSubmitBehavior="false" CausesValidation="false" AutoPostBack="true" CssClass="css3Grad" Height="25px" Width="15%">
<Icon PrimaryIconCssClass="rbPrint" PrimaryIconLeft="4" PrimaryIconTop="3"></Icon>
</telerik:RadButton>
I need this to call my VB function and not go through my page validations. How can I get these buttons to go straight to VB code?
My form does some validation that I need these buttons to bypass.
<form id="frmCheck" onsubmit="return Frm_onsubmit();" method="post" runat="server">
<telerik:RadButton ID="btnBatchT" runat="server" Text="Print Proof Listing" UseSubmitBehavior="false" CausesValidation="false" AutoPostBack="true" CssClass="css3Grad" Height="25px" Width="15%">
<Icon PrimaryIconCssClass="rbPrint" PrimaryIconLeft="4" PrimaryIconTop="3"></Icon>
</telerik:RadButton>
I need this to call my VB function and not go through my page validations. How can I get these buttons to go straight to VB code?