MVC.net JQuery Validation - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T16:33:39Z http://stackoverflow.com/feeds/question/61456 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/61456/mvc-net-jquery-validation 5 MVC.net JQuery Validation Dan 2008-09-14T16:43:56Z 2009-05-02T18:46:42Z <p>After trying to avoid JavaScript for years, Iv started using JQuery for <a href="http://bassistance.de/jquery-plugins/jquery-plugin-validation/" rel="nofollow">validation</a> in MVC asp.net, as there does not seem to be an official way of doing validation, Iv been surprised how good JQuery is. </p> <p>Firstly is there a way to get intellisense working for JQuery and its validation plugin, so that i don have to learn the api?</p> <p>Secondly how do I create a validation summary for this, it currently appends the error to the right of the text box.:</p> <pre><code>&lt;script type="text/javascript"&gt; $().ready(function() { $("#CreateLog").validate({ rules: { UserName: { required: true, minLength: 2, } }, messages: { UserName: { required: "Please enter a username", minLength: "Your username must consist of at least 2 characters", } } }); }); &lt;/script&gt; &lt;form id="CreateLog" action="Create" method="post" /&gt; &lt;label&gt;UserName&lt;/label&gt;&lt;br /&gt; &lt;%=Html.TextBox("UserName")%&gt; &lt;br /&gt; &lt;div class="error"&gt; &lt;/div&gt; &lt;input type=submit value=Save /&gt; &lt;/form&gt; </code></pre> <p>I tried adding this to the script:</p> <pre><code> errorLabelContainer: $("#CreateLog div.error") </code></pre> <p>and this to the html:</p> <pre><code> &lt;div class="error"&gt; &lt;/div&gt; </code></pre> <p>But this didn't work.</p> http://stackoverflow.com/questions/61456/mvc-net-jquery-validation/61460#61460 3 Answer by Gulzar for MVC.net JQuery Validation Gulzar 2008-09-14T16:54:13Z 2008-09-14T16:54:13Z <p>There is a Visual Studio 2008 hotfix for <a href="http://weblogs.asp.net/bradvincent/archive/2008/04/28/better-jquery-intellisense-in-vs2008.aspx" rel="nofollow">JQuery IntelliSense</a> in <a href="http://weblogs.asp.net/scottgu/archive/2007/06/21/vs-2008-javascript-intellisense.aspx" rel="nofollow">VS2008</a> . This might have been bundled with SP1 as well.</p> http://stackoverflow.com/questions/61456/mvc-net-jquery-validation/66527#66527 4 Answer by TheDeeno for MVC.net JQuery Validation TheDeeno 2008-09-15T20:18:55Z 2008-09-15T20:18:55Z <p>Try specifying both a wrapper and a label container in your options. I also added display:none; to the style of error-container to let jquery decide when to show it.</p> <p>Html:</p> <pre><code>&lt;div class="error-container"&gt; &lt;ul&gt; &lt;/ul&gt; &lt;/div&gt; &lt;form id="CreateLog" action="Create" method="post" /&gt; &lt;label&gt;UserName&lt;/label&gt;&lt;br /&gt; &lt;%=Html.TextBox("UserName")%&gt; &lt;br /&gt; &lt;input type=submit value=Save /&gt; &lt;/form&gt; </code></pre> <p>Script:</p> <pre><code>&lt;script type="text/javascript"&gt; $().ready(function() { $("#CreateLog").validate({ errorLabelContainer: $("ul", $('div.error-container')), wrapper: 'li', rules: { UserName: { required: true, minLength: 2, } }, messages: { UserName: { required: "Please enter a username", minLength: "Your username must consist of at least 2 characters", } } }); }); &lt;/script&gt; </code></pre> <p>That should work.</p> http://stackoverflow.com/questions/61456/mvc-net-jquery-validation/298664#298664 0 Answer by Tomas Lycken for MVC.net JQuery Validation Tomas Lycken 2008-11-18T13:02:48Z 2008-11-18T13:02:48Z <p>regarding intellisense for jquery (and other plugins): in order to have full intellisense in your own script files as well, just include the following line at the top of your .js file once for each file you want intellisensee from:</p> <pre><code>/// &lt;reference path="[insert path to script file here]" /&gt; </code></pre> <p>simple, but very useful =)</p> http://stackoverflow.com/questions/61456/mvc-net-jquery-validation/815368#815368 0 Answer by Soni Ali for MVC.net JQuery Validation Soni Ali 2009-05-02T18:46:42Z 2009-05-02T18:46:42Z <p>You might want to check out <a href="http://codebetter.com/blogs/karlseguin/default.aspx" rel="nofollow">Karl Seguin</a>'s ASP.NET MVC validation approach on <a href="http://codebetter.com" rel="nofollow">CodeBetter.com</a> and his sample <a href="http://codebetter.com/blogs/karlseguin/archive/2009/04/28/presenting-codebetter-canvas.aspx" rel="nofollow">application canvas</a>.</p> <p><a href="http://codebetter.com/blogs/karlseguin/archive/2009/04/26/validation-part-1-getting-started.aspx" rel="nofollow">Validation - Part 1 - Getting Started</a></p> <p><a href="http://codebetter.com/blogs/karlseguin/archive/2009/04/27/validation-part-2-client-side.aspx" rel="nofollow">Validation - Part 2 - Client-Side</a></p> <p><a href="http://codebetter.com/blogs/karlseguin/archive/2009/04/28/validation-part-3-server-side.aspx" rel="nofollow">Validation - Part 3 - Server-Side</a></p>