Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
13answers
893 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 ...
12
votes
3answers
6k 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 ...
11
votes
3answers
3k 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 ...
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
4answers
1k views

MVC2 Client-side validation for a DateTime?

What approach do you recommend for validating a DateTime on the client side in MVC? Let's say I have a model with a property named DateOfBirth that is a DateTime, like so. public class UserModel { ...
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). ...
5
votes
1answer
1k 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 ...
5
votes
1answer
802 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
2k views

Validation with backbone.js and Ruby on Rails

Does anyone have any advice or examples for doing validation with backbone.js and ruby on rails 2.x or 3.x?
4
votes
2answers
781 views

RegularExpressionAttribute - How to make it not case sensitive for client side validation?

I have a string that I use for client side validation: private const String regex = @"^(?:\b(?:\d{5}(?:\s*-\s*\d{5})?|([A-Z]{2})\d{3}(?:\s*-\s*\1\d{3})?)(?:,\s*)?)+$"; I use this string in my ...
4
votes
4answers
266 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?
4
votes
1answer
926 views

What can be causing Html.ValidateFor() method to produce a compile error?

I have view with the following which works: <%= Html.TextBoxFor(m => m.FirstName, new { @class = "required_field_light" }) %> <%= Html.ValidationMessageFor(m => m.FirstName) %> ...
4
votes
2answers
599 views

xVal in MVC.NET with nHibernate.validator does not fire client validation

I have an ASP.NET MVC Project working with NHibernate and NHibernate.Validator and i'd like to use xVal 1.0 (most recent release). I Added the requested scripts to the project and referenced it in ...
3
votes
5answers
198 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 ...
3
votes
2answers
160 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
1answer
474 views

.Net Mvc 3 Trigger (other than submit button) Unobtrusive Validation

What I would Like I would like to trigger client-side validation in my View with an event of my choice. It could be 'onblur' maybe another button but something other than the submit button. ...
3
votes
2answers
1k 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 ...
3
votes
1answer
1k views

ASP.NET MVC 3 - Client-Validation with money field

I did followed this blog here and here. And i have the following problem. One field in my form is currecy format, from brazil. I'm using client-side validation. Everything works great expept one ...
3
votes
1answer
353 views

How to get Castle Client Side Validation with xVAl

Has anybody had problems using Castle and Client Side validation? I’ve found that only my numbers (Int, Decimal, Double, etc) gets picked up by ClientSideValidation. Strings, dates, enums and other ...
2
votes
2answers
81 views

Client-side Validation in Struts 2

I am new at Java Web. I follow a tutorial about struts 2 at: http://viralpatel.net I success at create server-side validation, but the client-side do not work. When submit, I notice that a javascript ...
2
votes
1answer
204 views

Django: Avoiding Server-Side and Client-Side Validation Code Duplication

How do you avoid duplicating validation code on the server-side and on the client-side with Django? Given that Django follows a Don't Repeat Yourself principle, it seems logical that there would be a ...
2
votes
1answer
315 views

Add html text in error message using client side validation in mvc3

I have an MVC appilcation with a model which uses the [Required] attibute for a field. When the validation for this attribute fails, I would like to show a hyperlink in the error message. When I add ...
2
votes
2answers
449 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"), ...
2
votes
1answer
955 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 ...
2
votes
7answers
328 views

Why do we need server side as well as client side validation for Web applications?

Is there any high level reason to have both client side and server side validations for a web application ?
2
votes
2answers
448 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 ...
2
votes
2answers
336 views

Is MVC 2 client-side validation broken in Visual Studio 2010 RC?

I can't seem to get client side validation working with the version of MVC released with Visual Studio 2010 RC. I've tried it with two projects -- one upgrade from 1.0, and one using the template ...
2
votes
1answer
1k views

Client-Side validation prvent Manually Postback by JavaScript eval()

I encouter some postback issue when using GetPostBackEventReference. Here is the Scenario: I have a javascript modal popup dialog and got a button in this modal dialog which used to select things ...
2
votes
2answers
735 views

Validators: Do they Stay disabled on postback when disabled ClientSide?

I have been learning alot about the standard asp.net Validators, and my latest discovery was about how to disable a validator client side, which was pretty cool. now, if my initial post has the ...
1
vote
4answers
30 views

Is it ok to not display an error when server side verification fails when JavaScript is required?

We have a form that absolutely requires JavaScript to function, and validation is done client side. Validation is also performed client side, but it would be an extreme amount of work to get it to ...
1
vote
2answers
98 views

Data type client side validation not working in MVC 2

We have an attribute called DateReleased for which the following Data Annotation attributes are added [Required] [DataType(DataType.Date, ErrorMessage = "Please enter date")] [DisplayName("Date ...
1
vote
1answer
164 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 => ...
1
vote
1answer
205 views

client side validation don't show error message forms rails 3.1 Mongoid

I have installed ClientSideValidations I have rails 3.1 + Mongoid and the text error message dont show in the form. I follow the instruction for rails 3.1 in ...
1
vote
2answers
213 views

ASP.NET MVC ValidationAttribute Get Other Property Display Name

I have created a custom CompareLessThan validation attribute by copying the ASP.NET MVC 3 CompareAttribute and instead of checking for equality, I check to see that one property is less than another. ...
1
vote
2answers
254 views

ASPxTextBox ErrorText Not Updated on Lost Focus

I got this ASPxTextBox: <dxe:ASPxTextBox ID="txtFirstName" runat="server"> <ClientSideEvents LostFocus="function(s, e) { if (s.GetText() == '') { ...
1
vote
1answer
302 views

How to validate gridview when Clicking on Save button?

I have a gridview in a form that contains a Save ImageButton. I would like to create a Client-side CustomValidator that checks whether the grid is empty or not. If it is empty then I would like to ...
1
vote
2answers
363 views

Enable/Disable Validation of certain hidden textboxes in mvc 2

I have got [hide] and [unhide] input buttons , the hide button shows some text boxes while the hidden button hide some text boxes, What I want to do is to enable validation only for those boxes which ...
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
1answer
197 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
1answer
144 views

ASP.NET Client Validation Javascript Partially Rendering

This is happening on my development machine and the same codebase is working in production. So I believe this to be an IIS/Framework issue. It affects all pages. On both servers, the Page_Validators ...
1
vote
0answers
375 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
600 views

Debugging client_side_validations using Rails 3.1 SOLVED

I am having trouble getting any of it to work. This is my first attempt. After a while, I did see some change on the page when tabbing out of the password field, but no error message shows up. Here ...
1
vote
1answer
238 views

Client Side Validations on Heroku

I am using https://github.com/bcardarella/client_side_validations to validate my sign up form. I am validating the uniqueness of username and email in that form: validates_uniqueness_of :username, ...
1
vote
1answer
838 views

Client-side validation difference between Html.TextBoxFor/Html.TextAreaFor and Html.EditorFor (with [DataType(DataType.MultilineText)])

I am using client-side validation (unobtrusive) in ASP.NET MVC 3/Razor and I got it to work on a <textarea> by using Html.EditorFor and specifying DataType.MultilineText, but should not ...
1
vote
1answer
830 views

MV3 input validation - IE8 & IE9 behave differently

I'm using DataAnnotations to validate my input fields on a MVC3 application. I'm using regular expressions validations. I get the validation messages on the UI for IE8 & IE9. But I notice the ...
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 ...
1
vote
2answers
521 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: ...
1
vote
1answer
523 views

richfaces 4 client side validation problem

I have a problem with richfaces client side validation. Here is my xhtml page sample ; <h:form id="deneForm"> <rich:panel> <h:panelGrid columns="2"> <h:inputText ...
1
vote
2answers
222 views

Client-side validation for custom ValidationAttribute with AttributeTargets.Class

Is it possible to implement client-site validation for custom ValidationAttribute, which is used in Class scope? For example my MaxLengthGlobal, which should assure global max limit for all input ...
1
vote
2answers
372 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 ...

1 2 3