Tagged Questions
The validator tag has no wiki summary.
27
votes
8answers
5k views
Out of curiosity: How are serial numbers generated? Hints, Algorithms?
I wondering about how serial number generators and validator work. My aim would be to generate a serial number with five parts consisting of numbers and letters only.
I enjoy coding as a hobby and ...
10
votes
5answers
1k views
Is there an open source CSS validator that can be run locally?
I want to check internal web pages, so I cannot use the W3C validation service directly. I managed to run the XHTML validator locally, however, I have some problems with the css-validator. I do not ...
6
votes
5answers
264 views
Please help to understand this RegEx statement
Please help to understand this RegEx statement in details. It's supposed to validate filename from ASP.Net FileUpload control to allow only jpeg and gif files. It was designed by somebody else and I ...
4
votes
2answers
154 views
How to check PHP code against a specific set of coding conventions?
I have a PHP library that I'm planning to submit to the PEAR database. In order to do this, the library needs to follow the PEAR Coding Standards.
Is there a tool that can check my code to make sure ...
4
votes
3answers
2k views
Regular Expression Validator does not validate empty textbox
I would like to validate the textbox for specific text and it must not be blank. But the regular expression validator is not validating if the text box is BLANK. However, it validates if I type ...
4
votes
4answers
2k views
RegularExpressionValidator.ValidationExpression to force length in 10 or 12 symbols
RegularExpressionValidator.ValidationExpression="\d{10}" means only digits - 10 max.
RegularExpressionValidator.ValidationExpression="\d{10,12}" means only digits - 10, 11 or 12.
How to force ...
3
votes
4answers
33 views
Jquery validator plugin doesn't check new inputs
Hi I use jQuery validator for one form.
It was working nice until today. I added a new code to the form which adds/remove additional fields to the form (with set classes to "required")..
basic the ...
3
votes
5answers
205 views
What's the recommended way to display errors from JavaScript (jQuery) in ASP.NET MVC 3 views?
I submit a form to my ASP.NET MVC 3 server through a JavaScript handler (I use jQuery), and receive error responses from the server in another JavaScript handler. What I'm wondering is how I should ...
3
votes
1answer
76 views
How do you determine which validator failed?
I am working with a page and I am getting an Page.IsValid = false and I am trying to determine which control is causing the validation problem. If anyone can help, that would be greatly appreciated.
3
votes
3answers
272 views
JAVA_HOME environment variable not set Validator.nu HTML Parser
I am trying to install a local version of the Validator.nu server and it keeps failing on trying to build the HTML Parser.
It says it can't find the JAVA_HOME variable which I have set in my .bashrc ...
3
votes
4answers
2k views
XHTML Strict 1.0 - target=“_blank” not valid?
I just validated my actual XHTML Strict 1.0 doc with the w3c validator service.. and it says that,
<ul id="socialnetwork">
<li><a href="http://www.twitter.com" ...
3
votes
2answers
425 views
JSLint (Javascript Validator Website) - Error! Implied global:
I just tested my custom gallery script at JSLint.. and all errors where solved except for one.
The implied global error.. Is this really an error? Can I ignore it or should I work on it to solve this ...
3
votes
2answers
2k views
Skip HTML escape in custom label_tag helper in Rail 3
I have this nice class ErrorFormBuilder that allows me to add the error description near the corresponding field in the form view :
class ErrorFormBuilder < ActionView::Helpers::FormBuilder
...
3
votes
1answer
1k views
Customising event delegates in the jQuery validation plug-in
I am currently setting up the jQuery validation plug-in for use in our project.
By default, there are some events automatically set up for handling. I.e. focus in/out, key up events on all inputs ...
3
votes
2answers
699 views
alternative to w3 html validator
W3 Validator is barely working for me because of massive packet loss > 60% in
ae-0-11.bar1.Boston1.Level3.net
are there any good alternatives?
3
votes
3answers
157 views
Text editor with spell checker that ignores (X)HTML/CSS/javascript tags?
Do you know of any text editor that can be used with a spell checker which is smart enough to ignore XHML/CSS and javascript tags?
The requirements would be:
It must run in Linux;
It must be free ...
3
votes
4answers
156 views
Where can I find some simple W3C Validator API info for Perl?
Where can I find some simple W3C Validator API info for Perl? I've tried looking and just keeps leading to page after page of documentation.
Simply looking for download module or whatever is needed ...
2
votes
2answers
81 views
URI Regex: Replace http://, https://, ftp:// with empty string if URL valid
I have a simple URL validator. The url validator works as probably every other validator.
Now I want, if the URL passed, take the https://, http:// and remove it for var b.
So what I've done is I ...
2
votes
2answers
118 views
Parse Error [empty string] - W3C CSS Validator bug due to CSS size?
I have a problem with the following css validation:
http://www.provincia.le.it/html/portal/css.jsp
If I try to validate using "Validate by URI", I get a "Parse Error [empty string]";
If I try to ...
2
votes
1answer
121 views
wxPython: using Show() and Hide()
I'm working on a simple program that collects and checks user-input. In addition to displaying
a message box if the user-supplied input fails the checks, I'd also like to add a prompt
just to the ...
2
votes
1answer
175 views
How can I validate fields in a table in Vaadin with Scala
how can I validate a field in a vaadin table? For example the year field with a regex:
val persons: BeanContainer[Int, Person] =
new BeanContainer[Int, Person] classOf[Person])
...
2
votes
1answer
97 views
How Do I test a custom validator?
I have the following validator:
class EmailValidator < ActiveModel::EachValidator
def validate_each(object, attribute, value)
unless value =~ /^([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})$/i
...
2
votes
1answer
98 views
jquery validator - Validating visible elements only
I have a radiobutton that hides/shows a div. All visible elements are "required", but adding ignore: ":hidden" after the validation rules, doesn't work...
Here's the code:
<script ...
2
votes
3answers
373 views
Validate “yes/no” radio buttons to specific correct values using jQuery Validator plugin
and trying my best to get my head around the jQuery validator plugin.
I have googled extensively, but could not find anything similar to what i am trying to achieve. Please could someone help.
I am ...
2
votes
2answers
179 views
Zend_Validate_StringLength encoding?
In Zend Framework, Zend_Validate_StringLength has an encoding property that can be used to convert between different character sets (it uses iconv_set_encoding on the string).
Why is this part of the ...
2
votes
1answer
77 views
jQuery Validator - How to validate against non-form items?
I have a form where a user can keep adding items to a list. When they go to submit this page, I want to validate that this list actually has items in it (not the individual items as they've already ...
2
votes
1answer
207 views
Database access from jsr-303 custom validator
I'm using spring based validation in combination with hibernate validator enabled by the following in my application context:
<bean id="entityManagerFactory" ...
2
votes
1answer
54 views
Bug in the validator or obscure error in my CSS?
I am trying to validate a CSS document with the W3C validator, and it's giving some warnings related to color and background-color that should not appear since, well, I don't have those issues present ...
2
votes
3answers
131 views
Is there a pure Javascript X/HTML validator?
I want to know if there's an existing Javascript library for validating HTML, preferably not one that relies on a web API.
The closest I've found to this is John Resig's HTML parser, but that seems ...
2
votes
1answer
236 views
disable Required Field Validators
I have a form which consists of several requiredfieldvalidators and have 2 buttons an add and update button. i want to associate only 5 out of 13 requiredfieldvalidators with the update button and all ...
2
votes
4answers
4k views
Online PHP validator
Could someone refer me to an online PHP validator? It would be of much help. Thanks in advance!
2
votes
3answers
737 views
firstName.lastName regular expression using regularexpressionvalidator in asp.net
How can I make a regular expression that would say the following:
FirstName.LastName or FirstName.Letter.LastName
To allow example:
John.Smith
John.S.Smith
Not to allow example:
John Smith
...
2
votes
2answers
560 views
Multiple validators for one input
Is it possible to have multiple validators for one input in JSF 2.0? For example, say that I will write a username and the username must have 8 characters. And if OK, then check if the username does ...
2
votes
1answer
268 views
Struts and ValidatorForm --> does it work with variable number of form elements?
HI,
I have a form where I generate rows of input elements (using JavaScript) for users to enter their data. Each row contains data about a particular box that the user is entering (e.g. height, ...
2
votes
1answer
1k views
jsf inputText and validateRegexPatter
i want to display the label attribute in the message:
<h:inputText id="email" label="#{sW.email}" value="#{contattiBean.contatto.email}"
required="true">
...
2
votes
1answer
388 views
Validators message in rails 3
In Rails 3, the validators is changed: now is possible to specify all the validators for a specific field in once:
so instead to write
Rails 2.x.x style
validates_size_of :username, :within => ...
2
votes
1answer
155 views
GetCallbackEventReference is firing Validators - How to Disable it
We have a server control that inherit from CompositeControl and implements IPostBackDataHandler, ICallbackEventHandler.
When we fire the CallBackEvent for the control (using ...
2
votes
2answers
360 views
In Rails, how are validators, for example “validates_numericality_of” implemented?
I'm new to the Ruby language and the Rails framework. When I saw this piece of codes from the "Head First Rails" book:
class ClientWorkout < ActiveRecord::Base
validates_numericality_of ...
2
votes
1answer
2k views
JSF Validation message
I am using JSF 1.2 and Richfaces 3.3.FINAL. I have an inputText which must be a number between 1 and 999999999999.
<h:inputText id="prodId" required="true" value="#{product.productId}" ...
2
votes
2answers
429 views
Class-level validation
I am validating a class with DataAnnotations utils.
I have a class that has a Title property and an Item property.
I want to apply a RequiredAttribute to the Title property but it should be invalid ...
2
votes
5answers
635 views
System call to get serial number of machine in linux (programmed in java)
I know this is a long shot but is there any way of getting the serial number or uniquely identifiable piece of information in linux?
If so how can this be programmed into a Java program?
In ...
2
votes
1answer
394 views
How to fire an event on error in jquery validator plugin
I have jquery validator running and I the page is so long, so I want the page to scroll up to the top because I display errors on the very top of the page above the form, doesn anyone know where I can ...
2
votes
3answers
1k views
Make regular expression case insensitive
Given this regular expression: "^[0-9]*\s*(lbs|kg|kgs)$" how do I make it case insensitive? I am trying to use this in a .net regular expression validator, so I need to specify case insensitivity in ...
2
votes
1answer
668 views
Custom CheckBoxList in ASP.NET
Since ASP.NET's CheckBoxList control does not allow itself to be validated with one of the standard validation controls (i.e., RequiredFieldValidator), I would like to create a UserControl that I can ...
2
votes
2answers
353 views
jQuery script taking too much time in IE
I have a page with say 120 date boxes. I am using the validate plugin to validate those boxes on page submit. I have written some custom date validation code.
I use the jQuery.validator.addMethod() ...
2
votes
3answers
235 views
ASP.NET Validator Controls Slowing Down Page
I have an UpdatePanel that has user controls dynamically added to it. There can be a few dozen user controls at times.
The page / UpdatePanel slows down big time on each postback as more user ...
2
votes
6answers
759 views
Exiting from C++ Console Program
I currently have a program which has the following basic structure
main function
-- displays menu options to user
-- validates user input by passing it to a second function (input_validator)
-- ...
2
votes
3answers
3k views
Hibernate validator error - 4.0.2.GA
the validate function of the Hibernate Validator seems to be buggy (version hibernate-validator-4.0.2.GA.jar). Do I maybe miss a dependency?
Part of my stack trace:
java.lang.NoSuchMethodError: ...
2
votes
1answer
334 views
Usercontrols asp.net textbox/validator controls
I want to combine a textbox and several validator controls into 1 usercontrol.
Is this possible with the intent to keep some fields dynamic like
textbox:cssclass
textbox:id
textbox:width
I'm asking ...
2
votes
6answers
9k views
Flex: How do you validate 2 password fields to make sure they match?
I want to use a validator to ensure 2 password fields match in Flex. I want the validator to highlight form fields like a normal flex validation control. Thanks.