I have this code that 开发者_如何学Ctriggers when a form is submitted: $(\"form\").submit(function (e) {
We have a ASP.NET MVC 3 application that uses unobtrusive jQuery validation. The page allows to add children objects to the model in the same go. The <form> contains a grid for the children, and
I\'m trying to write a custom validation method in my app - I have it working server side, but I\'m trying to extend that so that it also implements in the unobtrusive javascript client side validatio
I\'m using head.js (http://headjs.com) to do async loading of my javascripts. I have problem with jquery.validate.unobtrusive and custom validators
I have a form that has a section with a dynamic number of inputs, depending on the options the user has chosen.When the configuration posts back to the server, I want to concatenate the different valu
I have a hidden field which is bound to a int Id in the model, it h开发者_StackOverflow社区as a required attribute and some fancy ajax code to set the id client side, the problem is that zero should b
If I allow the user to add text boxes to a view how can I still have my model validation work correctly? I want to be able to send back an array of FanId\'s to check (which I have done successfully).
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>
When I tried to implement ASP.net MVC 3 Unobtrusive Client Validations in the application, the rendered html didn\'t generate the span tags which are generated by JQuery.
I\'m using ASP.NET MVC. My validation works well until I attached an event to the form\'s onSubmit event.