Validation is used to check data to make sure it fits whatever required specifications are set for it.
0
votes
1answer
34 views
JSF 2 h:messages appears on the end of the form
I have a screen which is implemented in JSF2 and I have validations on some of the fields, and when an error appears for a field that has no
<h:message for="fieldName" />
it always appear on ...
0
votes
1answer
54 views
Checking whether a text box contain only digits
I am done with this problem(using an alternative method). But still don't know why the following method is not working. Please help
Aim: when leave from a text box
check whether it contain only ...
0
votes
2answers
37 views
Validating user inputted letters [duplicate]
I have here my code and I am trying to check whether the user inputs Y or N to get to the switch statement, however even if I write Y or N it gives me the error message, what am I doing wrong? thanks ...
0
votes
0answers
25 views
Django formset validation on editing
I am very confused after learning how django formsets work, when you edit data.
Imagine i have firm , and this firm have shareholders.
Firm can't have duplicate shareholders and shareholders summed ...
-1
votes
1answer
67 views
JavaScript RegEx expression for format '0 2 0 2 2' [closed]
I am looking for the regEx solution that matches the format of:
number whitespace number whitespace number i.e. 0 2 0 2 2 or 0 10 0 10 4 etc etc
The string can be infinite in length and therefore ...
1
vote
1answer
41 views
Spring web: how to validate form objects with Spring validator automatically at form submission
I am using Spring validator for form validation. Here is the structure of my code. As you can see, I have to manually call validate in the POST method. Is there any way for me to wire the validator ...
1
vote
0answers
38 views
Silex , mongo DB and updating a Document , Unique Constraint validation doesnt work properly
I'm testing silex, mongodb and Form validation. And I run into a validation issue when using MongoDB ODM and a before middelware , wether it is security related or not.
I'm given a document and have ...
0
votes
0answers
36 views
Symfony2 callback validation on trait
I want to use callback validation on a trait. For example:
<?php
namespace Vendor\Bundle\Entity;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Validator\Constraints as Assert;
use ...
0
votes
3answers
118 views
In html posting a form with javascript and php validation.. one fault- return true or false goes into text box of form
The form works, except, the value of true or false, gets put into the 'messagetxt' and that is the message I receive through email. I found the easiest way to create a continual alert box for invalid ...
0
votes
1answer
53 views
unit testing to validate a password
Can someone provide some sample code for a unit test that validates a users password?
//set test to crate user
AsaMembershipProvider prov = this.GetMembershipProvider();
...
0
votes
1answer
39 views
Invalid postback or callback argument (HiddenField and container Visible=false)
I've not found answers that matched my circumstances, so I'm posting an answered question hoping it will help others.
I was getting the error
Invalid postback or callback argument. Event ...
0
votes
1answer
29 views
Kohana validation 'matches' rule
I am using Kohana 3.3 for a project where have a model class which extends the ORM. There is a corresponding table to this model in the MySQL database. In this table, there are a 3 columns which ...
1
vote
1answer
17 views
XSD key not in root element and complex keys
I searched for this, but can't find solution to my problem, so please don't trash this question.
We have a service with very complex XML configuration which is described by XSD. There are many rules ...
1
vote
0answers
80 views
.click function requiring 2 clicks to fire
I have a form validation script, which should fire upon clicking the submit button. Everything works well, except sometimes it requires the submit button to be clicked twice before going. Any help ...
1
vote
1answer
42 views
WinRT XAML Toolkit TextBoxValidationExtension not validating on initiale binding in the ViewModel
I'm using the TextBoxValidationExtension in a MVVM pattern. I was having a problem with the validation because I'm setting my binding source in TwoWay mode in the NavigatedTo method which is called ...
1
vote
1answer
73 views
Custom jQuery script not working correctly after ASP.NET MVC 4 validation
I am using jQuery to enable and disable two separate textbox inputs and their labels based on the selection in a dropbox (#Drop1). Here is my jQuery script:
$(function () {
...
1
vote
1answer
48 views
Regular Expression PHP not validating correctly
I am trying to write a regex for my code, the regex is used to validate the phone number format, the first two digits should be either 01,04,05,06,07,08,09 followed by a dash (-) and followed by 6 ...
0
votes
1answer
34 views
Active Record Error messages form_tag Rails 3
I have a validation in my model like so
class Prediction < ActiveRecord::Base
attr_accessible :home_team, :away_team, :home_score, :away_score, :fixture_date, :fixture_id, :user_id
has_one ...
2
votes
1answer
33 views
How to tell Automapper to check if all source properties have destination properties
We have two classes:
public class Foo
{
public int A { get; set; }
public int B { get; set; }
public int C { get; set; }
}
public class Bar
{
public int A { get; set; }
public ...
1
vote
2answers
49 views
What does targetNamespace do ? Am I getting it right?
Here is the <schema> tag of my XSD:
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns="http://www.cmu.edu/ns/blank"
targetNamespace="http://www.cmu.edu/ns/blank"
...
0
votes
1answer
24 views
My XSD does not validate the XML despite proper namespace declarations
The XSD <schema> tag:
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns="http://www.cmu.edu/ns/blank"
targetNamespace="http://www.cmu.edu/ns/blank"
...
0
votes
2answers
55 views
Yii framwork creating and validating form input fields
I want to use HTML5 form inputs in my Yii project.
In the Yii framework, there are no functions to create type ='email' and type='tel' input fields like type='text'. There is a function to create ...
0
votes
1answer
52 views
Check if record exists in Model Rails
I was wondering if i would need to create a custom validation for the following scenario.
I have a Prediction model, in which a user submits their predicted scores for a set of football matches, they ...
0
votes
4answers
53 views
Having a code on website that works with alert but doesn't link to another website when the if condition is met [closed]
I am having trouble with my HTML/JAVASCRIPT document i have copied the code below.
I have created an input textbox and a button which runs function check(). The code executes well by using alerts but ...
1
vote
0answers
30 views
symfony2 validate a form value using another form value
In Symfony2, I use custom constraints to validate some data on my form, but I wonder if I can bring in one value from the form to use in validating another value?
Here's my constraint...
<?php
// ...
0
votes
1answer
23 views
cvc-elt.1.a: Cannot find the declaration of element 'people'
I am trying to validate my XML document using an XSD. I have tried providing namespaces to everything, including the default. However, the error persists. if someone could please tell me what is going ...
0
votes
0answers
11 views
Update and validate CDI beans from request
First of all I do not use JSF. I'm writing something like framework for web application to my study. I use servlets and CDI with my custom extension.
I'm trying to parse http request parameters and ...
2
votes
3answers
71 views
Validate user input dates are in given date range using javascript
I am new to php and javascript. this is what put me in to trouble
There are two dates given by administration.
Var a="24/05/2013";
var b="26/05/2013";
Assume if user select check in Date as : ...
0
votes
1answer
59 views
RequiredfieldValidator not working for all controls on button click if onblur event is set for textbox
I have a form in which I have 5 asp textboxes and have taken 5 requiredfieldvalidator for each. For each textbox have set event onblur="ValidatorOnChange(event);" to make requiredfiedvalidator to ...
1
vote
1answer
41 views
What is the most secure way to handle invalid input in a Zend application?
I have an application where the user arrives at a page from a link containing an ID value (e.g.: /students/view/42). In my code, I use Zend_Filter_Input, like this:
$input = new ...
-5
votes
3answers
59 views
Form required field validation with javascript [closed]
Hi I have a form to submit, however, one of the input field is optional. How can I write a code to check if all required field is filled?
I have tried
function (){
var ...
0
votes
2answers
58 views
JavaScript regex form validation failing
I made this random number guessing game using PHP, and I'm trying to implement client-side form validation using JavaScript. The script should allow only a number from 1-100 and reject everything else ...
1
vote
2answers
34 views
Check if field contains any numbers?
Hi I'm trying to write some VBA so that it checks whether one of my text boxes contains a number. The text box is called: CustomerName. Here's the code I am currently using:
Function ...
0
votes
2answers
24 views
Auto generate models on creation of other models in Ruby on Rails
I have a model called Video that has many statuses. I want to create a status of each kind and add it to @video.statuses in the def create of VideosController.
In VideosController, I have:
def ...
-1
votes
3answers
69 views
How to do validation for input? number or alphabet.. C programming
set1:
printf("Name : ");
gets (name);
if (isalpha(name)) {printf("\nSorry, input is invalid\n");
goto set1;}
this is a piece of my code, and i declared name as char name [30];
but, it ...
0
votes
2answers
26 views
ruby conditional validation has_and_belong_to_many
I am having two models, User and Role,
In Role Model:
has_and_belongs_to_many :users
In the User model,
has_and_belongs_to_many :roles
validates_presence_of :name, :if => ...
0
votes
1answer
50 views
Java validating a range of numbers from user input
I have been having problem with my validation, and it is stressing me out, I have done it in various ways with different loops, and the one I have as of now is this one, if I take out the IF statement ...
0
votes
1answer
43 views
Post variables not set when EnableEventValidation set to 'false'
So I have a jQuery dialog box within an ASP.NET WebForm application from which I post the content of all the contained controls to another page. The problem is the FileUpload control. When ...
1
vote
1answer
36 views
How to customize the locale for javax validation
I've one class in java which I'm validating using javax.validation following this code:
ValidatorFactory validatorFactory = Validation.buildDefaultValidatorFactory();
Validator validator = ...
0
votes
2answers
50 views
Regular expression on textarea
I'm having a bit of trouble validating a form I have, I can check for only letters, numbers and a full stop ("period") in a single text input, but I can't for the life of me get it to work at all on a ...
0
votes
0answers
49 views
Add error message to custom field for client validating in Joomla
I'm having a problem with Joomla client form validating (with MooTools).
The form validation does fine when the fields are empty, meaning that they show the error messages. But when the fields ...
0
votes
3answers
65 views
Regex for Date Validation in javascript
pls can somebody give the date validation regex, which will allow the following rules are
It should allow mm/dd/yyyy, m/d/yyyy, mm/d/yyyy, m/d/yyyy (not allow yy)
Number of days for month (30 and ...
0
votes
0answers
9 views
Understanding the “additionalProperties” keyword in JSON Schema draft version 4
Link to the specification: http://json-schema.org/latest/json-schema-validation.html#anchor64
Section 5.4.4.2 states:
Successful validation of an object instance against these three keywords ...
0
votes
2answers
53 views
Lotus Notes : Insert date value in Lotus Notes form using java agent
I am trying to upload the data from a delimited text file to the lotus notes form using java agent. The issue arises when I try to insert the date value to the notes document. After insert when i use ...
-1
votes
1answer
39 views
Struts form validation with javascript?
Hello I have the following struts form:
<s:form key="frmInfo" action="insertInfo" onsubmit="return validate();">
And in this form I have the following:
<s:textfield key="b.name" ...
0
votes
2answers
41 views
Basic form validation mechanism PHP
I'm trying to set up simple example for form validation, whether field is empty or not. If field is not empty action redirect me to page ok.php and if not back to formvalidation.php. and change css of ...
-1
votes
2answers
49 views
How can I apply MYSQL restriction for spaces in field values?
I have validation of required field on invoice number text box and validation is working perfectly for empty text box. But when spaces is added to the text box it skips validation. I have used regular ...
1
vote
2answers
53 views
jQuery Validator Does Not Validate Input File Type
I've written a upload form and I want users to be able to upload only images.
I've decided to use jQuery validator in order to make sure that users cannot send an empty form an can only upload images. ...
0
votes
1answer
39 views
How to cross validation phase and get checkboxes of dialog box selected?
In my project I have a dialog box where I have some checkboxes for items inside a datagrid and a command button which will add that into a list.
And in the page I have some fields with JSF ...
0
votes
1answer
32 views
Grails Domain Validator: Two fields, either can be null, but not both
I have a domain where there are two fields that can either be null, but not both at the same time. So something like this
class Character {
Association association
String otherAssociation
...






