Validation is used to check data to make sure it fits whatever required specifications are set for it.
0
votes
0answers
11 views
How to validate numbers with comma as decimal separator
In my Laravel 4 app, I have a form on which I need to validate numbers with comma as decimal separator. For the moment, it only work with point because my validation rule is :
public static $rules = ...
0
votes
0answers
5 views
Laravel 4 mandatory parameters error
Hello im working with laravel 4 in a proyect and it´s not the first time but i have a problem that ive never had before.
Some mandatory parameters are missing ("key") to generate a URL for route ...
0
votes
1answer
6 views
Validation In Express-Validator
I am using express-validator for validation. I am using mongoose for database, it also has validation built in. I want to know which one should I use?
I also want to know if the validation in ...
1
vote
1answer
26 views
jquery check validity of single element
I have a number input field and I'm trying to use jquery to check if the value in there is valid. I can do it in standard javascript/html5 using
// html
<input type="number" id="numField" ...
0
votes
0answers
5 views
creating schema.ini for validating csv files
I have certain feed rules and using those I would like to create a schema.ini for validating csv files against them. Can someone give a me a step by step tutorial as to how to go for this
?
0
votes
2answers
18 views
Android: getting info on the calling app from activity
I want to implement a fine-granularity protection mechanism in an exported activity. The permissions framework does not seem to work for my requirements.
There are two options I am considering:
...
0
votes
0answers
8 views
Validate html5 form input fields before sliding up and slide down the next input fields
<!DOCTYPE html>
<html>
<head><title>Form</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<script ...
0
votes
0answers
21 views
Javascript Age Validation not working on iPad
I have this functional code for age validation for an alcohol related website. It's working across the board for me but for some reason it's not validating on an iPad. The message "You must be at ...
0
votes
0answers
26 views
500 International Error in the form_validation CodeIgniter
Help me, please!!
I use library validation, but when I submit form via ajax(jQuery), I get a 500 International Server Error
Sending function
<script>
function ajax_send_register(){
...
0
votes
1answer
17 views
Implement a function into validation?
I see that jqGrid has its own built-in grid validation attributes like
editrules:
{
required: true,
email: true
}
However, I have a boolean function that checks whether a email is valid or ...
0
votes
0answers
24 views
Logistic regression & bootstrap
I'm trying to run first a logistic regression using lrm from the package RMS.
My model works fine with glm but not with lrm.
model1 <- lrm( Outcome30Days ~ ISS1 + ISS2 + as.factor(GCSgr)+
...
0
votes
0answers
13 views
Mobile Safari - How to Default to Full Numeric Keypad for Decimal Entry w/o type=“number”, or disable Safari input type=“number” correction
I have a fairly basic but frustrating problem, essentially I've been trying to force input fields to behave more like text input types (where they do not correct incorrect number entries, such as ...
0
votes
0answers
7 views
User validation in SSRS
Is it possible to limit the user to write a number between 1 and 100 for a parameter within an SSRS?
Is it possible to write a function or write an MDX expression such as:
...
0
votes
0answers
8 views
Symfony2 and loadValidatorMetadata - access Entity values
I have a custom validator and I would like to access the entire entity from the validator.
I have found Class Constraint Validator ...
0
votes
1answer
30 views
Jquery validate allows form submit even if there are errors
Jquery .validate function not working properly.
For the very first time on page load, if the submit button is clicked, nothing is being validated, even though the form inputs are empty. The form gets ...