Tagged Questions

8
votes
2answers
2k views

Required validation only if the field is visible in asp.net mvc

I am using the [Required] attribute for the Clientside validation in asp.net mvc 3. The class looks as: public class User { [Required(ErrorMessage = "First Name is required")] public string ...
8
votes
1answer
15k views

jQuery email validation requirements

I'm using the jQuery.Validation plugin for client side validation, and among other things I validate email addresses. Now I also want to validate on the server side (for users without javascript etc). ...
3
votes
5answers
208 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 ...
2
votes
2answers
449 views

Prevent jQuery server-side call when client side validation fails in ASP.NET MVC

I have a view page with model validations and client side validation enabled. I have a submit button which on click I have called a javascript function which uses jQuery for an AJAX call to the ...
1
vote
1answer
59 views

Client side validations and STI

I am using the client_side_validations gem. How do you suggest getting this to work with STI? class Vehicle < ActiveRecord::Base validates :year, :presence => true end class Car < Vehicle ...
1
vote
0answers
376 views

Call custom client side validation function after WebForm_OnSubmit? .NET

I want to run a simple JS function after my .NET validator controls run their javascript. My onsubmit value is javascript:return WebForm_OnSubmit();, which seems to be generated automatically and I ...
1
vote
1answer
141 views

Rails 3: Clearing errors from a form

First of all, I'm using rails 3.0.8 with devise and ClientSideValidations. I have a form (user sign-up) appearing in a modal window. In that modal window I have a cancel button that closes it and ...
0
votes
2answers
53 views

jQuery validation for client-side dynamic controls

I have controls that are dynamically added via javascript. I cannot set the class on these controls to “required” because I need the flexibility to place the error messages where I will. When I add ...
0
votes
2answers
92 views

jQuery Validations plugin- add delay to spinner to prevent quick flash

Im using jQuery validation plugin http://docs.jquery.com/Plugins/validation to do some client side validations. I have a remote validation to check whether a username is available in the database, ...
0
votes
1answer
382 views

jQuery - SmartWizard. How can I override “Previous” button validation?

Basically, I need to validate data when the "Next" button is clicked, but if the user wants to go back I do not want to validate if they have introduced the required fields for the current step ...
0
votes
2answers
43 views

Ajax.BeignForm() and re-referencing necessary scripts?

I created a partial view which consist of an Ajax.BeignForm(), as far as I read about it, to make client side validation work, I should reference these scripts : <script src="<%: ...
0
votes
1answer
200 views

client_side_validations (3.1.0) not working when new form is added to the DOM

I'm using Rails 3.1.0rc4 and client_side_validations 3.1.0. Everything works perfectly so long as the form is rendered in the main request. However, if the form itself is added to the page via ...
0
votes
3answers
138 views

How Can I make it possible that my Text box will take only numbers and ,(coma) and spaace and + characters using Jquery?

I am very bad at client side scripting. I am trying to use JQuery If possible. I have aspx page that has a web form with id = "formUI". This form contains multiple asp text boxes. One of them is ...
0
votes
3answers
100 views

Jquery listener on an element when it display:block/none; property changes

Is this possible? I want an event to fire when this happens.
0
votes
3answers
78 views

jQuery validation needed

Thanks for taking the time to help out. I'm using ASP.NET WebForms and I need a build a custom control for a custom CMS. I've implemented the server-side validation already. What it does is it check ...
0
votes
1answer
319 views

How to add custom form validation using Jquery Validation Plugin for multiselect input?

I need to create a custom jquery form validation using Jquery Validation Plugin where the multiselect option has following kind of values: Code1(A) Code2(A) Code3(B) Code4(C) Code5(A) Code6(B) ...
0
votes
0answers
345 views

Complicated Validation Rules Across Multiple Fields in MVC jquery.validate

I have a validation scenario that requires a complicated client side solution. First my issue. I am using a modified MicrosoftMvjJQueryValidation.js library to allow jquery.validate errors to be ...
0
votes
1answer
875 views

How do you ignore hidden page elements when validating using jquery.validationEngine.js?

I have a div who's style defaults to "display: none" until a previous field has been filled out, and it contains a drop down list that requires a selection. If the page is submitted before this div ...
0
votes
1answer
200 views

Clientside validation of a textbox

I have an asp.net control textbox, clicking on which a jquery timepicker appears and user can select any time.But I want to validate the selected time so that it is one hour greater than the current ...
0
votes
1answer
428 views

asp.net mvc2 microsoftMvcJqueryValidation - Include my custom client-side function

I'm using microsoftMvcJqueryValidation and I want to call my own client-side validation function for a particular field with the system so that it fires with the other auto generated client-side ...
-1
votes
1answer
231 views

Javascript to check validation and change textbox color

Check out the code: <script type="text/javascript"> function ValidateTextBox(source, args) { var is_valid = false; //Regex goes here var regex = /^[a-z A-Z]+$/; ...