The client-side-validation tag has no wiki summary.
22
votes
13answers
2k views
Why is client-side validation not enough?
I saw here that:
As you probably already know, relying
on client-side validation alone is a
very bad idea. Always perform
appropriate server-side validation as
well.
Could you explain ...
23
votes
4answers
5k views
IValidatableObject in MVC3 - client side validation
With MVC3 you have two new mechanisms for adding custom validation. These are (1) subclass ValidationAttribute or (2) implement IValidatableObject.
The ValidationAttribute allows you to add client ...
14
votes
2answers
8k 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 ...
14
votes
3answers
9k views
Asp.Net MVC EnableClientValidation doesn't work
I want as well as Client Side Validation as Server Side Validation. I realized this as the following:
Model: ( The model has a DataModel(dbml) which contains the Test class )
namespace ...
2
votes
1answer
2k views
Clientside Validation in “Self Validate Model” in ASP.NET-MVC3
This is a followup question for this one: How does DataAnnotations really work in MVC?
There is an example custom validation, and a "Self Validate Model" was mentioned. It is quite interesting, but I ...
7
votes
2answers
2k views
ASP.NET MVC data annotations client side validation with inherited RegularExpressionAttribute
To keep my model validation clean I would like to implement my own validation attributes, like PhoneNumberAttribute and EmailAttribute. Some of these can favorably be be implemented as simple classes ...
6
votes
3answers
3k views
Rails 3: client_side_validations gem and devise password validations
I've got the client_side_validations gem working really great on my forms. I'm using Devise for my users model and when I go to the edit_user_registration form, validations are thrown up for ...
1
vote
1answer
617 views
“Email is already taken” error when user logs in with client_side_validations and devise
I am trying to use both client_side_validations and devise in my Rails app, and get a weird bug in the log in form.
It's says that the email has already been taken and doesn't let the user to log in ...
1
vote
2answers
943 views
jquery.validate lost on ajax replacement and only showing last error
I am using jquery.validate in MVC 2 with MicrosoftMvcJQueryValidation. I have data annotations on my model which is then being translated into jquery validators. I am using a modification to ...
9
votes
1answer
17k 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). ...
5
votes
1answer
2k views
Javascript form-validation framework: Request for Review
I wasn't sure if I could ask this kind of question, but after seeing this on Meta Stackoverflow, it looks like this kind of question is ok. Well, onto my question:
A few months ago I wrote a ...
4
votes
2answers
612 views
DDD & client-side validation
I've been looking around on StackOverflow for a similar post and yes, there were some discussions on what im about to ask but i decided to start a new topic.
Suppose you have an application that ...
3
votes
4answers
1k views
Why is client-side validation a security risk as opposed to server-side validation?
I don't quite understand why client side validation is a potential security risk or more of a security risk than server side validation? Can someone give me some scenarios?
1
vote
6answers
1k views
User input validation, client-side or server-side? [PHP/JS]
Is it better to validate user input before it's sent to the server with JS or server side with PHP? Or maybe it's worth doing both just to be on the safe side?
I'm creating a site (very simple at the ...
1
vote
1answer
2k views
Overriding ActionView::Base.field_error_proc in RefineryCMS
I'm trying to have client-side validation errors show up inline, using the client_side_validations gem (https://github.com/bcardarella/client_side_validations) in my refineryCMS app.
When I tab out ...
1
vote
1answer
533 views
Clientside validation attributes on hidden,radio, dropdown elements by default in asp.net mvc 3
I'm using ASP.NET MVC 3 + FLUENT VALIDATION + NINJECT
I have model X and rules for that model are something like this:
RuleFor(c => c.FirstName).NotEmpty();
RuleFor(c => ...
0
votes
0answers
125 views
JSF road map to support client side validations in future
If my question is generic and not Strictly a technical question, please inform me. I will remove it.
My question is does JSF have a road map to support pure client side validations in future(with no ...
5
votes
2answers
1k views
SimpleForm+ClientSideValidations+bootstrap - Validation is not occuring on the form- all inputs are accepted
I am using the SimpleForm, ClientSideValidations, and ClientSideValidations-SimpleForm gems in a RoR application. I can render the form into the modal beautifully, however when the input loses focus ...
2
votes
2answers
3k views
How do I turn off client side validation in MVC 3?
I have a framework for client side validation that I'd prefer to use over the existing one that ships with ASP.NET MVC 3.
Does anyone know how to disable it in MVC 3?
I have tried the following:
...
2
votes
2answers
2k views
ASP MVC 3: How can I do Client side Validation on a Select List?
After reading a few question/answers here I have managed to work out how to add a Select list to a form and fill it with data, like so:
@Html.DropDownList("S", new SelectList(ViewBag.S, "Id", "Nme"), ...
1
vote
0answers
394 views
Client Side Validations on Nested Field Not Generate Valiadtion
I have application rails and use client_side_validations gem with Devise to validate devise registrations form
//account.rb
has_one :user
validates :username, presence: true, uniqueness: true
...
1
vote
1answer
1k views
Customize Html.ValidationMessageFor doesn't work in client side
I am working on mvc3 application, i have created a custom validationMessage to validate a simple field. This custom validationMessage only show an div with title and message instead of the default ...
1
vote
2answers
1k 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 ...
1
vote
2answers
1k views
Does ruby on rails have client side validation like ASP.NET MVC
In ASP.NET MVC you can setup client side validations with the data annotations model which is similar to validations in ruby on rails. However there are unobtrusive javascript hooks created that will ...
0
votes
1answer
288 views
Override client_side_validations behavior to validate hidden fields
I am using the client_side_validations gem with Rails 3.1.0. I have been trying to use it to validate a hidden field that is set through a javascript widget. From what I have read on the gem's github ...
0
votes
1answer
201 views
Client_side_validations gem with formtastic in jquery modal view not working
I'm trying to get the client_side_validations gem to validate my form in a jquery modal view, but the validations aren't occurring (at least insofar as the errors aren't appearing inline).
I'm using ...
0
votes
1answer
182 views
Can't include js file for client slide validation
I installed gem 'client_side_validations', run bundle and run rails g client_side_validations:install
Installation DIDN"T create any js files, so I created them and put code from HitHub in my ...
0
votes
3answers
874 views
ASP.MVC3 is client side validation enabled by default?
In my Layout page, i have the following links to the validation Javascript files,
<script src="@Url.Content("~/Scripts/jquery-1.4.4.min.js")" type="text/javascript"> </script>
...
0
votes
4answers
707 views
ASP.NET MVC and partial client side validation
I have huge form that I'd like to split in different steps, but I need to validate the fields in the current step before go to the next step.
E.g.: My form has 40 fields, and they are divided in 4 ...
-1
votes
1answer
761 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]+$/;
...