I have been using xVal with success for a while but this evening ran into an issue where a field containing a period would not be validated (client or server-side). I am using ASP.NET MVC2 and need to
I am using ASP.NET MVC2 and to validate the forms i use xVal. It se开发者_运维技巧ems like the server side validation works fine, but the client side validation doesnt work or atleast doesn\'t show up
I am using xVal for client validation in an ASP.NET MVC application. Since I have too many fields in on开发者_运维技巧e of the forms, I split it into sections and used jQuery accordion to display one
Can I exclude the valudation rule f开发者_运维技巧or the ID property? Right now I get the following validationerror message when I submit the form:
I have a form where a user can toggle receiving funds either via check or via electronic transfer. When they choose either way in a list box, the respective part of the form hides. If they choose elec
We\'re using xVal and the standard DataAnnotationsValidationRunner described here to collect validation errors from our domain objects and view models in ASP.NET MVC.I\'d like to have a way to have th
I am using xVal to validate my forms in asp.net MVC 1.0 Not sure why my regular expression isn\'t validating correctly.
With the excellent XVal by Steve Sanderson, it is possible to tell the client side validation to post the value being validated to the server using jquery. A meth开发者_JS百科od on the server then use
I am considering using xVal for validation of Entity Framework classes in a MVC application. This involves writing metadata classes as explained in details by Graham O\'Neale (http://goneale.com/2009/
开发者_运维技巧I\'m building a wizard-style application in ASP.NET MVC and is wondering if you have any feedback on my current approach.