Tagged Questions

A jQuery plugin written by Microsoft that acts as a support library for jQuery and the jQuery Validate plugin. The script is shipped as part of ASP MVC3 and is included in new Visual Studio 2010 MVC3 projects by default. It uses HTML5 data attributes (data-val-*) usually originating from ...

learn more… | top users | synonyms

6
votes
2answers
1k views

client side validation with dynamically added field

i am using jquery's unobtrusive validation plugin in with asp.net mvc. the problem is that all the fields that are rendered server side gets validated with this scheme but if i dynamically add a ...
6
votes
3answers
1k views

jQuery Mobile and Unobtrusive Validation

I'm creating a jQuery Mobile (Alpha 3) based ASP.NET MVC 3 application utilizing the unobtrusive validation that comes with MVC3. When a page is accessed directly (no hash in the Url), validation ...
5
votes
1answer
229 views

ASP.NET MVC 3: Required steps for unobtrusive client-side validation of dynamic/AJAX content

What are the complete set of Steps Required for client-side unobtrusive validation to work for dynamically inserted form fields? Relevant SO posts ASP.NET MVC 3 unobtrusive client-side validation ...
5
votes
2answers
2k views

MVC3 Unobtrusive Validation Not Working after Ajax Call

Ok, here is the deal, I have seen a few posts on SO relating to this issue, but nothing is working for me. Basically, I have select drop downs that are being loaded from partial views, I am trying ...
5
votes
1answer
240 views

Grouping errors in jQuery Unobtrusive Validation

I have 3 rows of checkboxes which a user must fill out. The validation is that he must select at least one checkbox in each row. So I've created the mandatory rule since as I understand it the ...
5
votes
1answer
726 views

RequiredAttribute with AllowEmptyString=true in ASP.NET MVC 3 unobtrusive validation

If i have [Required(AllowEmptyStrings = true)] declaration in my view model the validation is always triggered on empty inputs. I found the article which explains why it happens. Do you know if there ...
5
votes
2answers
1k views

mvc3 jquery unobtrusive validation locale decimal field

I'm working on localized mvc3 web application using unobtrusive validation. In web.config I've got : <globalization culture="pl-PL" uiCulture="pl" /> Jquery 1.4.4 and jquery validation 1.6 is ...
5
votes
1answer
685 views

mvc clientside validation for nested (collection) properties

I'm using asp.net mvc 3 with jquery unobtrusive validation. I recently changed from standard DataAnnotations to FluentValidation and it works great. My primary reason for picking up FluentValidation ...
4
votes
3answers
765 views

How to get unobtrusive jquery remote validator to perform async..?

In an MVC3 app, using jquery unobtrusive validation, and a view/model with a [Remote] validator: I am trying to disable the submit button and display a wait icon during remote validation, and when a ...
4
votes
4answers
783 views

mvc3 validate input 'not-equal-to'

My forms have inputs with default helper text that guides the user on what to enter (rather than using labels). This makes validation tricky because the input value is never null. How can I extend ...
4
votes
2answers
923 views

ASP.NET MVC 3 unobtrusive validation and radio buttons

I'm trying to do required validation on a list of radio buttons to force the user to select an option to continue. The validation does work but it only outputs metadata on the first radio button and ...
4
votes
2answers
1k views

Forcing a revalidate on mvc3 unobtrusive remote validation

It's a classic login flow. The user can choose between 'new user' or 'existing user'. If the user is new, the name in the login box should validate against the server to see if the username is unique, ...
4
votes
2answers
1k views

ASP.NET MVC3 unobtrusive jQuery validation massages localisation

I'm stuck with ASP.NET MVC 3 jQuery unobtrusiv validation message localisation. Specifically with "number" validation. If I have a number property in model input html is rendered with data-val-number ...
3
votes
1answer
217 views

Client-side validation of input type date does not work

I have a form containing a date and datetime field: @Html.TextBoxFor(model => model.A, new { @type = "datetime" }) @Html.TextBoxFor(model => model.B, new { @type = "date" }) Model: public ...
3
votes
3answers
186 views

Model inheritance possible when using strongly-typed view in MVC3?

I have the following setup in my model: namespace QuickTest.Models { public class Person { [Required] [Display(Name = "Full name")] public string FullName { get; set; ...
3
votes
5answers
1k views

Best approach for extending unobtrusive javascript in MVC3 to add a style to a div client side

I'm using html5/Razor/MVC3 leveraging the Bootstrap template from Twitter. I want to have form validation that looks slick like they've documented (http://twitter.github.com/bootstrap/#forms). So if ...
3
votes
3answers
393 views

Unobtrusive validation in Chrome won't validate with dd/mm/yyyy

I'm trying to use the simplest possible scenario using a date picker in different browsers. I suspect I'm doing something very simple the wrong way but after lots of searching around I still haven't ...
3
votes
1answer
144 views

ASP.NET MVC 3.0 Partial inside and outside the form with unobtrusive data validation attributes issue

I have from with conditional content, according with conditions using jQuery i am including or excluding this parts from the form elements. Here is my functions: function MoveInsideForm(id) { ...
3
votes
2answers
1k views

server side validation in jquery dialog

sorry for my language - in English i can only read :) i want to do in asp.net mvc something like this: 1. show user a page 2. open modal dialog (jquery-ui) and show partial view 3. validate user input ...
3
votes
1answer
569 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
3answers
3k views

Validating an e-mail address with unobtrusive javascript / MVC3 and DataAnnotations

jQuery Validation makes it simple to validate an email address: $("someForm").validate({ rules: { SomeField: { required: true, email: true, remote: { ...
3
votes
1answer
594 views

asp.net mvc 3 jquery adding validation message manually

I've been search for quite a while and haven't been able to find an answer to this. I am using asp.net MVC 3 with unobtrusive validation. My model is bound with data annotations for simple ...
3
votes
2answers
2k views

ASP.Net MVC 3 - Client side unobtrusive validation for Editor Templates

I am new to ASP.Net MVC 3, facing some issues while trying to implementing client side unobtrusive validation for a editor template I have created for showing date in a custom way. UI I need to show ...
3
votes
3answers
816 views

Using unobtrusive validation in ASP.NET MVC 3, how can I take action when a form is invalid?

I have a page with jQuery UI tabs on it, and a single required field on the first tab. Validation works, and the validation message appears next to the field if the user hasn't entered a value. ...
3
votes
2answers
1k views

ASP.NET MVC 3 unobtrusive validation, submit and TinyMCE

We have an in-house developed file/image/document manager plugin for TinyMCE that is still being ported over to jQuery. In the mean time, some of our projects that rely on having these features need ...
3
votes
2answers
2k views

How can I have a custom ValidationAttribute rendered as a 'data-val-xx' attribute on the client-side?

Given a ViewModel that looks like this: public class Login { [Required] public string Username { get; set; } [Required, CustomValidator] public string Password { get; set; } } And ...
2
votes
1answer
90 views

Showing a message for successful validation

I'm using asp.net MVC3 and enjoying the ease in which I can create client-side validation. I may be missing something obvious, but is there a way in which I can set a 'validates successfully' ...
2
votes
2answers
75 views

ASP.NET MVC 3 check if validation on page

How would I check if a form / page had validation on it? e.g. if ($('.uiModalContent > form') HAS VALIDATION) { $.validator.unobtrusive.parseDynamicContent('.uiModalContent'); }
2
votes
3answers
115 views

Adding delay to Remote validation attribute MVC3

I have a senario where i have to check for a Username existance in database while doing a registration page. for this i have implemented a Remote Attribute for remote validation in my model ...
2
votes
4answers
706 views

MVC3 Unobtrusive Date Validation on a custom formatted date

I have a date field (i'm using the jquery ui datepicker) in a form that I've formatted, like so: ViewModel [DisplayFormat(DataFormatString = "{0:dd-MMM-yyyy}", ApplyFormatInEditMode = true)] public ...
2
votes
1answer
254 views

Revalidating a modified ViewModel within a controller method?

EDIT - We're using MVC4 Dev Preview.... I'm implementing an edit page for a FishingTrip class. FishingTrip contains a child collection of simple Crew objects (i.e. FishingTripID, CrewID, ...
2
votes
3answers
106 views

How to detect that unobtrusive validation has been successful?

I have this code that triggers when a form is submitted: $("form").submit(function (e) { var geocoder = new google.maps.Geocoder(); var address = document.getElementById("Address").value; ...
2
votes
2answers
191 views

ASP.net MVC Validation Hook

I have the following view in ASP.net MVC 3: @model Models.CreateProjectViewModel <script type="text/javascript" src="@Url.Content("~/Scripts/jquery.validate.min.js")"></script> ...
2
votes
2answers
368 views

MVC3 Validation - Require One From Group

Given the following viewmodel: public class SomeViewModel { public bool IsA { get; set; } public bool IsB { get; set; } public bool IsC { get; set; } //... other properties } I wish to ...
2
votes
2answers
283 views

custom unobtrusive date validators for dates

Maybe it's just the way my mind works, but I have a very hard time understanding how you're supposed to do custom unobtrusive validators. The C# part is easy enough, but the jqueryui adapters are ...
2
votes
1answer
384 views

Call a script after validation with jquery.validate.unobtrusive

I am using ASP.NET MVC 3 with unobstrusive validate javascript. I am also using jquery ui tabs, and I would like to select a tab who contains an element with an invalid message. So, to do that I need ...
2
votes
1answer
1k views

Display MVC3 Unobtrusive ValidationSummary errors in a jQuery UI Dialog

I'm looking to display MVC3's unobtrusive ValidationSummary errors in a jQuery UI Dialog. Specifically, I want to be able to have a "live" $('.validation-summary-errors').dialog(...);-like ...
2
votes
1answer
365 views

ASP.net MVC ValidationSummary always being rendered

I've added an ASP.net MVC validation summary and even when the page is first loaded and when ModelState is valid it renders this out... <div class="validation-summary-valid" ...
2
votes
2answers
319 views

Validate prefilled jQuery form (invalidate on first field clear, ASP.NET and unobtrustive)

I have a form that can be filled, saved, loaded and re-edited. When it is loaded and re-edited, it probably begins its life valid. When a field is valid upon load, I want it to invalidate immediately ...
2
votes
2answers
974 views

ASP.NET MVC [RegularExpression] Attribute Not Functioning on Entire String Match

I can't seem to find a similar topic on Stack Overflow regarding this, so here goes: Why is it when I specify against my ASP.NET MVC view model class the following definition: [Required] ...
2
votes
1answer
2k views

JQuery Unobtrusive Validation firing on dropdownlist when it should not

I have the following in an .NET MVC3 using viewmodels. I am using Razor and FluentValidation (but I have also tried DataAnnotations with the same results). From View: ...
2
votes
1answer
961 views

mvc3 unobtrusive validation - edit html table row [closed]

I display some data in html table. Html form is around html table. I'm using unobtrusive validation. In each row I have edit button going to EditRow(int id) action that returns html table row in edit ...
2
votes
1answer
777 views

Unobtrusive validation problem with DropDownListFor in ASP.NET MVC 3

Why is it that client validation is getting triggered saying that my Default Theme field is required even if I didn't specify a [Required] attribute in my model? Model : public class Site { ...
2
votes
4answers
614 views

ASP.NET MVC 3: Generate unobtrusive validation when BeginForm is on the layout

I just realized that when I place a form tag on my layout page, surrounding the RenderBody section, the unobtrusive validation is not being generated. Something like this: @using (Html.BeginForm()) { ...
2
votes
1answer
363 views

ASP.NET MVC 3 Remote validation to allow original value

I have a Remote attribute on the email property of my User model. When I create a new user, it works create and tells the users that an e-mail is already in use. Now I'm having a problem in my editing ...
2
votes
2answers
3k views

ASP.NET MVC3 Custom Unobtrusive Client Side Validation not preventing Ajax form post

I have a "change password" page that needs to hash any passwords entered on the page via Javascript before sending. To complicate it, the page is loaded via a jQuery load() call, and is submitted by a ...
2
votes
1answer
834 views

How can I make ASP.NET MVC3 client side form validation run before custom form post event

I have a view with a form that uses the unobtrusive client side validation in asp.net mvc 3 to validate the form fields. I also have a custom jquery script to submit the form via ajax ...
1
vote
0answers
17 views

MVC3 “Unobtrusive JavaScript” model validation

I used to make my ajax calls like this: form.bind("submit", function(e) { e.preventDefault(); form.ajaxSpin("large"); form.ajaxSubmit({ ...
1
vote
1answer
31 views

MVC 3 unobtrusive jquery validate - how to add a Dummy message to Vallidation Summary

I get some error messages from the back end service and I want them to be displayed in the Validation Summary control on the page. I am using MVC 3 and ValidationSummary is not on the page till a ...
1
vote
1answer
43 views

MVC 3.0 - unobtrusive client side validation is not working for custom attributes

I am new to mvc 3.0 and jquery. i am trying to validate the 'date' both at client side and server side using customized validation attributes. It is working fine at server side, but am not able to ...

1 2 3 4