1
vote
3answers
83 views
Validating Multiple Textbox Date with jQuery Validate
I'm trying to write a custom method to validate a date. The date however exists in three text boxes. Furthermore, there may be multiple instances of this date.
<div class=" …
0
votes
0answers
35 views
Determine is XElement contains valid xml
Hi,
I have an application that makes hundreds of calls to a third party web service. Each time a call is made the response is parsed into XElement and a series of operations are p …
0
votes
1answer
27 views
Validate radio input form with unknown set of radios
HI,
I am trying to validate a radio button form that has an unknown amount of radio groups.
So far I have this:
var object = $(".radio:checked");
var length = $('#numq').val();
i …
0
votes
1answer
11 views
combining jquery validate and ajaxForm plugins
I had both the validation and the ajaxform working fine alone, but when I try to combine the form doesn't work properly. I am not that familiar with JQuery and so think the syntax …
0
votes
3answers
535 views
jquery: validate form with multiple checkboxes — at least one must be checked
I'm trying to validate a form using the validate plugin for jquery. I want to require that the user check at least one checkbox in a group in order for the form to be submitted. …
0
votes
1answer
337 views
Ragel - validate a String while Input
Assume we want to validate user input, while user is typing in a JTextField. For validating the user input, I wonder if I could use Ragel.
Assume the input should follow this exam …
0
votes
1answer
30 views
how to validate domain class fields during update in grails
Hi,
There is domain class with natural key defined as below
class InterestGroup {
String intGrp
String name
static constraints = {
intGrp(blank: false, maxSize: 4, unique: tr …
0
votes
2answers
110 views
Jquery validate date range fails
I have an HTML page with a web form. Among other things, it includes the following form fields:
Title - textbox
SourceName - textbox
Url - textbox
FullText - textbox
PublicationD …
1
vote
2answers
125 views
ASP.NET like ValidationGroup using JQuery validate plugin?
Hello,
We're trying to get the JQuery validate plugin working on our site but we've stumbled across a problem here.
On our site we have a login form available for the user on e …
1
vote
1answer
60 views
How can JQuery validate() be executed before onClick=”functionname()”;
A form, I use AJAX to transfer the data. The AJAX is triggered by onClick="", I also use JQuery validate(). JQuery validate() is executed after the onclick=“function()", I would li …
0
votes
1answer
177 views
jQuery validate() function.
I have a credit application form. If there is a co-applicant, I want to run the same validation for the primary applicant. Currently, I have:
$().ready(function() {
$("#cApp").va …
1
vote
4answers
252 views
C# best way to “validate” an object bound to a form
Hello,
I got a business object bounds to a form (each property is bound to a control). There is some business specificatios (such as this field should not be empty, this one must …
1
vote
4answers
129 views
jQuery name problem
Hi, i have a problem trying to validate something. I hope you can help me!
IM USING STRUTS2
"currentTarjeta.causaDeUnicoServicioContratado": {
required: "#currentTarjeta.causaDeUn …
1
vote
2answers
87 views
calling custom validation methods in Rails
I just upgraded my rails to 2.3.4 and I noticed this with validations:
Lets say I have a simple model Company which has a name. nothing to it.
I want to run my own validation:
cl …
0
votes
5answers
103 views
How to validate sql query syntax?
java 1.4
Sql server 2000
i am taking input of sql query (for validation of field value against values retrieved by executing sql query) from admin user which will be stored in dat …
