Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
232 views

custom unobtrusive date validators for dates

Maybe it's just the way my mind works, but I have a very hard time understanding how you're supposed to do custom unobtrusive validators. The C# part is easy enough, but the jqueryui adapters are ...
2
votes
1answer
123 views

Calling custom helper or library function in set_rules()

I am trying to call a custom library's method in the set_rules(...) line. I heard one could create a class (in application/libraries) extending the native Form_validation class and write the custom ...
2
votes
2answers
541 views

custom validation attribute not working on client, just on server

I am trying to implement custom attribute validation, similar to one demonstrated here in ScottGu's blog: http://weblogs.asp.net/scottgu/archive/2010/01/15/asp-net-mvc-2-model-validation.aspx I have ...
2
votes
0answers
146 views

Suppress “base” in error text for custom validation of Rails nested attributes

I have the following models: class Evaluation < ActiveRecord::Base attr_accessible :product_id, :description, :evaluation_institutions_attributes has_many :evaluation_institutions, ...
2
votes
3answers
555 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
1answer
1k views

Custom Validation with MVC2 and EF4

on ScottGu's Blog is an Example how to use MVC2 Custom Validation with EF4: http://weblogs.asp.net/scottgu/archive/2010/01/15/asp-net-mvc-2-model-validation.aspx So here the Problem: When the ...
1
vote
0answers
18 views

Change priority of Custom validations in rails model

I have implemented validations in a dependent manner, like if start_date format is invalid so i don't want to run other validation on start_date. validates_format_of :available_start_date, :with ...
1
vote
1answer
65 views

Custom validator on list field doesn't seem to work at all

Model: using System.ComponentModel.DataAnnotations; using MySite.Validators; namespace MySite.Models { public class AddItem { [Required(ErrorMessage = "Name is required")] ...
1
vote
0answers
15 views

customvalidator always isvalid=true

I have a custom validator for checking if date enetred is valid. but it is always true that makes it not firing. I used to have a comaprevalidator and daterange but it won't work coz as page ...
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
2answers
354 views

Zend Framework - Where should we place our custom Validators?

We can read here how to write: http://framework.zend.com/manual/en/zend.validate.writing_validators.html class MyValid_Float extends Zend_Validate_Abstract { 1) Where should we place this? ...
1
vote
1answer
1k views

Why The error message for custom validator is not shown in message box?

I have tried in many way but the error message for custom validator is not shown in validation summary but it(ValidationSummary) shows error message for every other type of validator. <%@ Page ...
1
vote
2answers
545 views

JSF 2 validators can't use “var” from dataTable

We've recently upgraded our systems from JSF 1.2 to JSF 2.0 and are in the process of making everything work. However, we're experiencing problems with validators, when used inside data tables or ...
1
vote
1answer
132 views

Developing a custom-validation in asp.net for specific control and criteria

There is another relevant question asked Validation Check in asp.net In the same scenario we need a custom validator control which will alert user for any wrong entry. This will work like this : ...
1
vote
1answer
841 views

Custom Validation Attribute with Custom Model Binder in MVC 2

I apologise for the amount of code I have included. I've tried to keep it to a minimum. I'm trying to have a Custom Validator Attribute on my model as well as a Custom Model binder. The Attribute ...
1
vote
1answer
252 views

ASP .NET Multiple Custom Validators on a single page

Can you have more than one CustomValidator on a single page? I have two separate CustomValidators with two separate controls on one page. Both ServerValidateEventHandlers are setup for each control. ...
1
vote
1answer
436 views

How to make ASP.Net custom validators produce an alert

All ASP.Net client validation messages can be shown as an alert by setting the ShowMessageBox="True" property on the ValidationSummary control. This works fine for anything that happens on the ...
1
vote
1answer
968 views

Zend Db_NoRecordExists - checking against multiple columns

Zend Db_NoRecordExists docs seem to be limited to checking only one column. Is there a way to check multiple keys when validating an entry? For example, I am allowing the same email address for ...
0
votes
0answers
41 views

How can I test custom validation in jsf test processValidation phase?

I have a custom validator class implements javax.faces.validator. My question is how can i test it in jsf lifecycle process validation phase.When I tried to test it, it didn't into this phase or ...
0
votes
0answers
112 views

Custom Validator for DateTimeControl not firing

I have the following DateTimeControl, with a custom validator... <cc1:DateTimeControl ID="dtReceivedDate" runat="server" LocaleId='<%# GetLocaleID() %>' IsRequiredField="true" ...
0
votes
2answers
85 views

CustomValidator not working (asp.net vb)

I am using the CustomValidator for the first time but it doesn't seem to be firing DateExpireRequired_ServerValidate and just runs the code in the Click action. Been bugging me for a couple hours ...
0
votes
1answer
94 views

Izpack: Validator doesn't work?

I have a field description in my "UserInputSpec.xml" file. <field type="radio" variable="selected.source" > <description align="left" txt="Please select TBPAPIIntegrator data ...
0
votes
0answers
60 views

.net custom validator attribute, js 'validators' property

I have a custom control that extends the native WebControls.Panel control. This custom control is decorated with the ValidationPropertyAttribute attribute: [ValidationProperty("ID")] public class ...
0
votes
1answer
215 views

jQuery validate custom method not getting called

I have used jQuery.validator.addMethod to create a custom validate method that will make sure there is at least one row in my data-entry table. Using Firebug, my breakpoint in the method isn't being ...
0
votes
1answer
703 views

Grails: Custom Validators

I am trying to create a custom validator for variable 'amount' in my domain class, such that the new value should be greater than previous by 0.50. For example, lets say the previous value was 1.0, ...
0
votes
1answer
1k views

ASP.NET - Custom Validator with Dynamic ErrorMessage

I am currently trying to make sure a number entered in a textbox is divisibly by 1.25 or 1.5. The wayI decide weather to mod the number by 1.25 or 1.5 is dependant on what is in another drop down ...
0
votes
1answer
570 views

symfony : Problem with custom post validator

I have made a nested form using the method 'embedRelation'. In a main form I have twelve child forms. EDIT : $subForm = new sfForm(); for ($i = 0; $i < 12; $i++){ $enfant = new Enfant(); ...
0
votes
2answers
7k views

ASP.NET validator to compare two date difference is not more than 12 months

I have two TextBox controls for start date & end date input. I have to validate that end date is not greater than start date & the difference between start date & end date is not more than ...
0
votes
1answer
631 views

How can I make a custom validator fire even if a textbox is empty?

I set a custom validator on a textbox. It only validates if there is some text in the textbox, I need it to fire all the time when someone clicks on the submit button. How can I do this?
0
votes
2answers
582 views

How do I hook up javascript to my CustomValidator control in .Net

I have created a CustomValidator control public class MyValidator :CustomValidator, IScriptControl {} and also created the equivalent client script. The server validation works fine, however how ...
0
votes
1answer
491 views

Zend Framework: is there a way to access the element name from within a custom validator?

I'm writing a custom validator that will validate against multiple other form element values. In my form, I call my custom validator like this: $textFieldOne = new ...