Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
7answers
42k views

ASP.NET Custom Validator Client side & Server Side validation not firing

This has not happened to me before, but for some reason both the client ans server side validation events are not being triggered: <asp:TextBox ID="TextBoxDTownCity" runat="server" ...
11
votes
7answers
18k views

Elegant way to make CustomValidator work with ValidationSummary messagebox

I have run into this problem before but never quite solved it. I have a form with several validators and also a CustomValidator. <asp:Label ID="lblMemberNum" runat="server" Text="Membership #:" ...
5
votes
2answers
591 views

Entity Framework Complex Type Custom Validation, Stopping Validation Recursion

We are using complex types to manage our translatable fields like this: [ComplexType] public class Translated { [Required] public string NL { get; set; } [Required] public string EN ...
3
votes
6answers
2k views

asp:CustomValidator / OnServerValidate

I have a CheckBoxList that I am trying to validate that at least one of the checkboxes is checked. Markup: <asp:CustomValidator ID="RequiredFieldValidator8" ValidationGroup="EditArticle" ...
2
votes
1answer
112 views

How to stop Ninject from overriding custom DataAnnotationsModelValidatorProvider?

I have a custom DataAnnotationsModelValidatorProvider for doing model validation in a more dynamic way then just adding attributes. I tried to add my provide to the global.asax.cs like so: ...
2
votes
2answers
142 views

CustomValidator not firing in control

So here is the issue. I have a DropDownList in a .ascx control with a CustomValidator on it. This control has a ValidationGroup set by a property in the PageLoad. The button that triggers the ...
2
votes
1answer
97 views

How to validate an attribute with “validates :attribute” referring to the value of a parent object attribute?

In this exercise from O'Reilly's "Head first Rails" (ed. 2009) there are 2 related objects. The "Flight" object [I used annotate gem to show every attribute]: # == Schema Information # # Table name: ...
2
votes
1answer
186 views

Can i call CustomValidator method on server side without assigning ControlToValidate?

I have 3 RadioButtons from same group, and every radioButton enables its listbox. I want to check if radiobutton was checked and its if items were selected from its listbox. So I"m using ...
2
votes
1answer
300 views

MetadataType attributes are being Ignored in a Custom Validator

(.NET 4.0/WebForms/EF 4.1 POCO) Hi, I´m using a Custom Validator to use DataAnnotations with WebForms (source code is bellow). Everything goes fine when I use DataAnnotations directly in the ...
2
votes
2answers
291 views

CustomValidator not working

I have a CustomValidator that checks if text entered in textboxes matches certain fields in a database. This was all working great before, but I have modified my page quite a bit since then and it is ...
2
votes
3answers
558 views

Does custom validator works in FormView?

I have search through google and found that a lot of people is struggling with this issue but i still not found the right answer. http://i.stack.imgur.com/15jen.png I have a form view and need to ...
2
votes
2answers
91 views

Using a rails custom validation to modify data

I would like to add some logic to my model to ensure there is a consistent string representation of a serial number in the database of devices. Below is an example of the sort of thing I'm thinking ...
2
votes
4answers
3k views

asp.net custom validator not firing for textbox

I have both a required field validator and custom validator for validating a texbox. The required field validator fires perfectly. I'm not able to get the custom validator to fire properly? ...
2
votes
1answer
316 views

Invoking CustomValidator validation from JavaScript

I have the following setup, where I am custom validating a textbox. It works fine as long as I am manually typing in the textbox and changing the text and focusing out of the textbox. <asp:TextBox ...
2
votes
1answer
529 views

Only validate city, state, and zip if “United States” is selected as a country

I need to create a user control with form fields for Country (dropdown), Address (text box), City (text box), State (dropdown), and Zip (text box). I only want to validate City, State, and Zip if ...
2
votes
1answer
474 views

ASP CustomValidator, advancing to postback after error

I have an ASP .NET page with ASP validators (Required Field, Regular Expression,...) plus java script functions for additional validation (for example, to check if second date bigger than first date, ...
2
votes
2answers
1k views

Asp.Net custom validator: how to get the 'controlToValidate' property on ClientValidationFunction?

Lets say I have this code. <asp:TextBox ID="TextBox1" runat="server" /> <asp:CustomValidator ID="CustomValidator1" runat="server" ClientValidationFunction="ValidationFunction1" ...
2
votes
1answer
1k views

JAXB does not call setter when unmarshalling objects

I am using JAXB 2.0 JDK 6 in order to unmarshall an XML instance into POJOs. In order to add some custom validation I have inserted a validation call into the setter of a property, yet despite it ...
2
votes
2answers
543 views

Validate on multiple errors with one CustomValidator

I am trying to figure out how to use Validation on Business Objects. Until now I have only seen examples on CustomValidator that checks for only 1 error. I have two fields with DateTime input that ...
2
votes
6answers
9k views

How do I validate that a list box is not empty (client side)

I'm working with ASP.NET 3.5. I have a list box that users must add items to (I've written the code for this). My requirement is that at least one item must be added to the listbox or they cannot ...
1
vote
0answers
63 views

asp:CustomValidator not returning 'false'

Don't know what is wrong here. This is a page developed by someone else and I am trying to fix one of the issue. Scenario: ASP.NET site. Login.aspx has <asp:login> and there are three ...
1
vote
2answers
36 views

using custom validators in ASP.net

I'm using ASP.net custom validator to validate if mail exists in database or not so I have a server side bool function public void isUnique(object source, ServerValidateEventArgs args) { ...
1
vote
2answers
123 views

Custom Validator Not Showing Error Message

On my Domain Model for my ASP.net MVC3 application I have built a custom validator to ensure the date of birth is inserted in a particular format. I am saving the date of birth as a string, because ...
1
vote
1answer
84 views

Custom validator fires but does not prevent postback

I've seen a lot of questions about this already, but I'm stumped! Please help! I have a customvalidator. It's firing but it's not preventing postback. Please help me in doing so! I can see that ...
1
vote
2answers
74 views

Client-side CustomValidator won't validate

Why won't this client-side CustomValidator validate? When the webpage(1) is run, the CustomValidator ignores the validation rules and doesn't diplay an appropriate message in ValidationSummary ...
1
vote
2answers
63 views

set errormessage for customvalidator?

I would like to use a customvalidator control to handle all my validation, but I can't figure out how to set the error message in the code-behind for different checks. Is this possible?
1
vote
0answers
34 views

Rails: Can I deposit other validations in a custom validator?

I have a custom validator, which extends ActiveModel::EachValidator. I want to set dynamic validations in the validates_each-Method dependent on the record. For instance for one record I need a ...
1
vote
1answer
306 views

How to validate gridview when Clicking on Save button?

I have a gridview in a form that contains a Save ImageButton. I would like to create a Client-side CustomValidator that checks whether the grid is empty or not. If it is empty then I would like to ...
1
vote
2answers
199 views

CustomValidator not executing on second step of a multi-panel Page

I am experiencing a problem with an ASPX page not executing a CustomValidator. The Page consists of 3 ASP Panels which swap visibility for each step in a 3 step process. The first step/panel functions ...
1
vote
3answers
583 views

customvalidator for dropdownlist not being invoked (apparently)

Writing a custom validator for a dropdownlist that is using autopostback. Seems to ignore the validation altogether. Why is it ignored and is there an easy fix? Note I did not use ControlToValidate ...
1
vote
1answer
329 views

How to execute a custom validator client function OnBlur or OnChange

I have a standard ASP.NET (WebForms, not MVC) custom validator assigned to a TextBox. I want the TextBox event OnBlur (or OnChange) to trigger the client-side validation function specified by the ...
1
vote
1answer
332 views

display a symfony post-validation error in an embeded Form

I have a form witch contains embededForms. the Post-Validator: $this->validatorSchema->setPostValidator( new sfValidatorCallback( array('callback' => array($this, 'myPostValidator')) ...
1
vote
2answers
334 views

ClientValidationFunction for CustomValidator fails while setting args.IsValid true/false

I have a CustomValidator with ClientValidationFunction as below function checkAmount(source, args) { var opt = document.getElementById('<%=optByAmount.ClientID %>'); var txt = ...
1
vote
1answer
470 views

ASP.NET CustomValidator with ClientValidationFunction not Firing if validation fails

I am validating date using customvalidator but this is not working well can any one tell why This is my .aspx <script type="text/javascript"> function monthDiff(d1, d2) { var months; ...
1
vote
3answers
124 views

Do custom validator need ServerValidate event if it already has clientValidationFunction

As far as i know, If there is clientValidationFunction in a customer validator. it will not let the post back happen until the value is valid. So if there is clientValidationFunction already, it is ...
1
vote
1answer
876 views

conditional validation based on other fields, c#

I have a couple of scenarios I need to create: 1) if a dropdown has a particular value, make a particular textbox a required field. 2) if a particular textbox has data, make another textbox required ...
1
vote
1answer
816 views

custom validator for checkbox in asp.net

i have used custom validator protected void cvIsActive_ServerValidate(object source,ServerValidateEventArgs args) { if(args.Value.Length==1) args.IsValid = true; ...
1
vote
2answers
84 views

Rails" Is it possible to know operation(update, create) being performed within validation method?

Platform: Rail 3.0 Database: mysql 5.1 Business requirement: Only one item of a product can be issued at a time. After a return of the issued item, a new item can be issued of same product. Multiple ...
1
vote
1answer
937 views

Dynamic error message for custom validator clientside

I am using a custom validator to call a javascript function for validation. My problem is that I need to be able to change the error message dynamically. Here is the code: ...
1
vote
3answers
363 views

check box validation for atleast one check box should cheked in asp.net

I have asp.net form having 4 check boxes. not check box list. these 4 check boxes having the ValidationGroup property with same name say "chkValied". I have added Custom Validator there. now want to ...
1
vote
1answer
609 views

Self hosted WCF + Custom UserNamePasswordValidator + Silverlight 4

The code below suppose to run a self hosted with custom authentication WCF Service which needs to provide its services to a Silverlight 4 client (See code below). The result is that the infamous ...
1
vote
1answer
723 views

Checkbox Custom Validator with ValidationSummary not working

I have the following validation which is working fine for the rest of my fields, but trying to get a custom validator to work as part of the validation summary for a checkbox but no joy. This is what ...
1
vote
1answer
665 views

ASP.NET CustomValidator with ClientValidationFunction

I'm trying to validate an integer range with a CustomValidator. The range is set dynamically, so when either the min/max values on my usercontrol change, the client validation function is updated. ...
1
vote
2answers
439 views

ASP.NET CustomValidator control interferes with jQuery validation on form submission

I have a simple form that uses jQuery validation to notify the user of input errors, etc. When I add an ASP.NET CustomValidator to the form, it causes the page to postback and skip the jQuery ...
1
vote
2answers
334 views

CustomValidator in ASP.net is empty when Textbox.TextMode=“Password”

my CustomValidator in ASP.net is empty when Textbox.TextMode="Password". I call a server-method and try to get the value.Value. When I change the TextMode to SingleLine or MultiLine all works fine. ...
1
vote
0answers
320 views

Async Validation WCF RIA Services - Domain Context Exception

I have custom validation to verify if a username already exists, it works fine on the client, i.e. type in an existing username and I see a validation error message. When I hit submit, I get an error ...
1
vote
1answer
2k views

Custom Validator firing but it does not update the ValidationSummary

Hi I am working on a custom form field validator, it seems like the custom validator is working by not allowing it to continue to the next page, but it doesn't update the Validation Summary nor does ...
1
vote
1answer
455 views

User Control with Client + Server Side CustomValidation; Wrong Client side validator is picked

I have a user control which contains a CustomValidator which is used according to whether a RadioButton is checked or not (there are several RadioButtons, I'm only showing the relevant one) ...
1
vote
1answer
367 views

ValidationSummary style not displaying in IE 6 on Post asp.net

I am posting back to the server to check the DB to see if we hold a reference number. If the reference number does not exist I set two custom validators to invalid and change the ValidationSummary ...
1
vote
1answer
514 views

ASP.NET Custom Validator + WebMethod + jQuery

I'm trying to implement a .NET Custom Validator that uses $.ajax to query a WebMethod on the same page and return a boolean value to indicate whether the result is true or false. The WebMethod I'm ...

1 2 3 4