MVC.net JQuery Validation - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T16:33:39Zhttp://stackoverflow.com/feeds/question/61456http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/61456/mvc-net-jquery-validation5MVC.net JQuery ValidationDan2008-09-14T16:43:56Z2009-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><script type="text/javascript">
$().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",
}
}
});
});
</script>
<form id="CreateLog" action="Create" method="post" />
<label>UserName</label><br />
<%=Html.TextBox("UserName")%>
<br />
<div class="error"> </div>
<input type=submit value=Save />
</form>
</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> <div class="error"> </div>
</code></pre>
<p>But this didn't work.</p>
http://stackoverflow.com/questions/61456/mvc-net-jquery-validation/61460#614603Answer by Gulzar for MVC.net JQuery ValidationGulzar2008-09-14T16:54:13Z2008-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#665274Answer by TheDeeno for MVC.net JQuery ValidationTheDeeno2008-09-15T20:18:55Z2008-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><div class="error-container">
<ul>
</ul>
</div>
<form id="CreateLog" action="Create" method="post" />
<label>UserName</label><br />
<%=Html.TextBox("UserName")%>
<br />
<input type=submit value=Save />
</form>
</code></pre>
<p>Script:</p>
<pre><code><script type="text/javascript">
$().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",
}
}
});
});
</script>
</code></pre>
<p>That should work.</p>
http://stackoverflow.com/questions/61456/mvc-net-jquery-validation/298664#2986640Answer by Tomas Lycken for MVC.net JQuery ValidationTomas Lycken2008-11-18T13:02:48Z2008-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>/// <reference path="[insert path to script file here]" />
</code></pre>
<p>simple, but very useful =)</p>
http://stackoverflow.com/questions/61456/mvc-net-jquery-validation/815368#8153680Answer by Soni Ali for MVC.net JQuery ValidationSoni Ali2009-05-02T18:46:42Z2009-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>