I am running into various validator - validation issues on my pages and was wondering if anybody has ever ran across this problem.
Example: I have a custom UserControl placed in a MultiView that is placed in a RadAjaxPanel. The UserControl is made up of first name, last name, address, city state fields with most fields having a RequiredFieldValidator. Without filling out the control I click the "save customer" button. The RequiredFieldValidator is ignored and the page post back.
Example: I have the following code. I want the RadComboBox the post back and it does...but the ClientValidationFunction is firing while I have the CausesValidation=false
Any help would be appreciated
Example: I have a custom UserControl placed in a MultiView that is placed in a RadAjaxPanel. The UserControl is made up of first name, last name, address, city state fields with most fields having a RequiredFieldValidator. Without filling out the control I click the "save customer" button. The RequiredFieldValidator is ignored and the page post back.
Example: I have the following code. I want the RadComboBox the post back and it does...but the ClientValidationFunction is firing while I have the CausesValidation=false
| <telerik:RadComboBox ID="ddl" runat="server" AutoPostBack="true" OnSelectedIndexChanged="ddl_SelectedIndexChanged" TabIndex="1" Width="350px" CausesValidation=false></telerik:RadComboBox> |
| <asp:CustomValidator ID="valReqSelected" runat="server" ClientValidationFunction="checkSelection" Text="" Display="Static" ErrorMessage="Please select." EnableClientScript="true" ValidateEmptyText="true" ControlToValidate="ddl" ValidationGroup="Save"></asp:CustomValidator> |
Any help would be appreciated