0
votes
3answers
57 views
a design problem with relatively complicated validations
hi,
i have a design problem.. it may seem that i'm giving you too much details, but those are important.
say i have a very large input form, with a complicated input, that requir …
0
votes
2answers
18 views
Nested record validation: need to validate child and parent together
Account < AR
has_many :deposits
accepts_nested_attributes_for :deposits
attr_accessible :max_amount
end
Deposit < AR
belongs_to :account
attr_accessible :amount
…
0
votes
2answers
45 views
Rails 101 | validates_currency ??
Hi guys,
I've searched high and low, but I could not find a solution, to what I think seems like a very common task.
In a form I want to have a text input that accepts currency s …
0
votes
1answer
11 views
Axapta Validation Override Always Executes Twice
In most cases, validation methods I've overridden execute twice each time the parent field is changed. Everything still works, but the InfoLog displays double messages every time. …
0
votes
3answers
56 views
(rails) how to validate whether an uploaded .txt file is not, say, an image file?
I have a upload text file field, and with it I plan to save the file somewhere and then store the location of the file in a database. However, I want to make sure the file they upl …
0
votes
2answers
21 views
CodeIgniter form verification and class
I'm using the form validation library and have something like this in the view
<p>
<label for="NAME">Name <span class="required">*</span></label …
0
votes
5answers
62 views
PHP form validation for year
I'm using PHP to validate form input before the form data's submitted to a MySQL database.
What would be the best way to validate a form input for the year only? I have a form inp …
0
votes
2answers
18 views
Free Tool for Validating 2 Databases
I want a free tool for verification all table data between 2 mysql databases ?
is there any free tool available on Linux
3
votes
2answers
68 views
How to validate a passport?
Well I have been asked to validate passport numbers (the documents used on airports to travel to other countries).
My question is: What format are these "numbers"? All I know is t …
0
votes
1answer
56 views
Regular Expression with quotes in javascript
i like to check this email address with javascript and regex.
Beacuse of quotes and other signs.. there will be syntax error. i checked with firebug.
now, can anyone send me a po …
1
vote
3answers
101 views
Javascript regular expression not working in Firefox
This regular expression fails in Firefox but works in IE.
function validate(x) {
return /.(jpeg|jpg)$/ig.test(x);
}
Can anybody explain why?
1
vote
3answers
61 views
Rails Validation for users email - only want it to validate when a user signs up or updates email address.
I have a User model with the usual attributes such as email and hashed_password etc. I want to write a validation that checks for the presence of an email address but only when
1 …
0
votes
5answers
54 views
Validate text boxes against custom set variable
I have a form that I want to create whereby the user enters in one digit per text box. I need all those digits to be correct when the user clicks a button - imagine the iPhone Pass …
0
votes
4answers
41 views
How to validate a <textarea></textarea> with Jquery if no form exists?
I knew there is a JQuery form validation, but if there is no form, how to validate with Jquery? Say, there is a
<textarea></textarea>
, I want to send the text via A …
0
votes
2answers
29 views
how to validate only user text box
hi
I am taking login control in simple format(means with out convert to template) and I placed one link button(forgot password) out side of login control
my issue is when user cl …
