<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Mitch Labrador&#039;s Tech Blog</title>
	<atom:link href="http://mitchlabrador.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://mitchlabrador.com</link>
	<description>Less is more when you are focused.</description>
	<lastBuildDate>Fri, 03 Feb 2012 13:57:26 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>Comment on jQuery validation error inside the jQuery.UI.Dialog by Maciej</title>
		<link>http://mitchlabrador.com/2009/07/08/jquery-validation-error-inside-the-jquery-ui-dialog/#comment-180</link>
		<dc:creator><![CDATA[Maciej]]></dc:creator>
		<pubDate>Fri, 03 Feb 2012 13:57:26 +0000</pubDate>
		<guid isPermaLink="false">http://mitchlabrador1.wordpress.com/2009/07/08/jquery-validation-error-inside-the-jquery-ui-dialog/#comment-180</guid>
		<description><![CDATA[YES YES YES YES
I owe you a beer, sir ! :)]]></description>
		<content:encoded><![CDATA[<p>YES YES YES YES<br />
I owe you a beer, sir ! <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to change the way jQuery.validate handles error messages by Tapan Sodagar</title>
		<link>http://mitchlabrador.com/2010/11/05/how-to-change-the-way-jquery-validate-handles-error-messages/#comment-167</link>
		<dc:creator><![CDATA[Tapan Sodagar]]></dc:creator>
		<pubDate>Sat, 07 Jan 2012 10:48:42 +0000</pubDate>
		<guid isPermaLink="false">https://mitchlabrador1.wordpress.com/2010/11/05/how-to-change-the-way-jquery-validate-handles-error-messages/#comment-167</guid>
		<description><![CDATA[I am using jquery validate for my form validations. I have displayed all the errors at the top of the form by using the below code.

errorPlacement: function(error, element) {
			error.insertAfter($(&quot;span#errorContainer&quot;));
		}	

Everything is okay and working as expected but having design problem with IE7. If errors get validated success the errors message goes away but the label stays on the pages and the blank labels keep space in IE7 as i have given display:block in the css to line all of them vertically. Any help would be appreciated.]]></description>
		<content:encoded><![CDATA[<p>I am using jquery validate for my form validations. I have displayed all the errors at the top of the form by using the below code.</p>
<p>errorPlacement: function(error, element) {<br />
			error.insertAfter($(&#8220;span#errorContainer&#8221;));<br />
		}	</p>
<p>Everything is okay and working as expected but having design problem with IE7. If errors get validated success the errors message goes away but the label stays on the pages and the blank labels keep space in IE7 as i have given display:block in the css to line all of them vertically. Any help would be appreciated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to change the way jQuery.validate handles error messages by Mitch Labrador</title>
		<link>http://mitchlabrador.com/2010/11/05/how-to-change-the-way-jquery-validate-handles-error-messages/#comment-156</link>
		<dc:creator><![CDATA[Mitch Labrador]]></dc:creator>
		<pubDate>Tue, 22 Nov 2011 00:37:51 +0000</pubDate>
		<guid isPermaLink="false">https://mitchlabrador1.wordpress.com/2010/11/05/how-to-change-the-way-jquery-validate-handles-error-messages/#comment-156</guid>
		<description><![CDATA[Sure, you can do a custom error validation that will inspect the name of the field that is being reported as having an error and appending the error to a div in one of the two locations you specified. If the field is 1-5 then add the error to the first div, otherwise add them to the last div. 

So you can just follow scenario two and just check for the name attribute of the element to determine if it should be placed in error container one or two. 

Hope this helps. 

Regards, Mitch ]]></description>
		<content:encoded><![CDATA[<p>Sure, you can do a custom error validation that will inspect the name of the field that is being reported as having an error and appending the error to a div in one of the two locations you specified. If the field is 1-5 then add the error to the first div, otherwise add them to the last div. </p>
<p>So you can just follow scenario two and just check for the name attribute of the element to determine if it should be placed in error container one or two. </p>
<p>Hope this helps. </p>
<p>Regards, Mitch </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to change the way jQuery.validate handles error messages by Mike</title>
		<link>http://mitchlabrador.com/2010/11/05/how-to-change-the-way-jquery-validate-handles-error-messages/#comment-155</link>
		<dc:creator><![CDATA[Mike]]></dc:creator>
		<pubDate>Tue, 22 Nov 2011 00:32:31 +0000</pubDate>
		<guid isPermaLink="false">https://mitchlabrador1.wordpress.com/2010/11/05/how-to-change-the-way-jquery-validate-handles-error-messages/#comment-155</guid>
		<description><![CDATA[Hi,
I have a long form with many questions. I would like to display errors for the first 5 questions above question #1. I would like to display errors for the remaining questions above question #6. As it is now, all errors are displayed above question #1, but this requires too much scrolling up and down.

Is it possible to have two error containers, both displaying errors for two different groups of questions?

Thanks,
Mike]]></description>
		<content:encoded><![CDATA[<p>Hi,<br />
I have a long form with many questions. I would like to display errors for the first 5 questions above question #1. I would like to display errors for the remaining questions above question #6. As it is now, all errors are displayed above question #1, but this requires too much scrolling up and down.</p>
<p>Is it possible to have two error containers, both displaying errors for two different groups of questions?</p>
<p>Thanks,<br />
Mike</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to change the way jQuery.validate handles error messages by Mitch Labrador</title>
		<link>http://mitchlabrador.com/2010/11/05/how-to-change-the-way-jquery-validate-handles-error-messages/#comment-153</link>
		<dc:creator><![CDATA[Mitch Labrador]]></dc:creator>
		<pubDate>Wed, 16 Nov 2011 14:26:38 +0000</pubDate>
		<guid isPermaLink="false">https://mitchlabrador1.wordpress.com/2010/11/05/how-to-change-the-way-jquery-validate-handles-error-messages/#comment-153</guid>
		<description><![CDATA[Hi Mike.

At the bottom of your page, when you are setting your form up for validation, you do so by calling

$(&quot;#formid&quot;).validate({ ... });

The options I mention above are passed as an object to the validate method to configure the validation for the selected form (&quot;#formid&quot;).

Hope this helps.

Regards,
Mitch]]></description>
		<content:encoded><![CDATA[<p>Hi Mike.</p>
<p>At the bottom of your page, when you are setting your form up for validation, you do so by calling</p>
<p>$(&#8220;#formid&#8221;).validate({ &#8230; });</p>
<p>The options I mention above are passed as an object to the validate method to configure the validation for the selected form (&#8220;#formid&#8221;).</p>
<p>Hope this helps.</p>
<p>Regards,<br />
Mitch</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to change the way jQuery.validate handles error messages by Mike Miller (@shelzmike)</title>
		<link>http://mitchlabrador.com/2010/11/05/how-to-change-the-way-jquery-validate-handles-error-messages/#comment-152</link>
		<dc:creator><![CDATA[Mike Miller (@shelzmike)]]></dc:creator>
		<pubDate>Wed, 16 Nov 2011 04:46:36 +0000</pubDate>
		<guid isPermaLink="false">https://mitchlabrador1.wordpress.com/2010/11/05/how-to-change-the-way-jquery-validate-handles-error-messages/#comment-152</guid>
		<description><![CDATA[Okay,  nevermind. Research will do a body good I suppose :). I finally used the proper search terms and found what I was looking for. However, one other question - is it possible to use multiple validate() to handle different needs, or will I have to incorporate it into one function?

Thanks!

Mike]]></description>
		<content:encoded><![CDATA[<p>Okay,  nevermind. Research will do a body good I suppose <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . I finally used the proper search terms and found what I was looking for. However, one other question &#8211; is it possible to use multiple validate() to handle different needs, or will I have to incorporate it into one function?</p>
<p>Thanks!</p>
<p>Mike</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to change the way jQuery.validate handles error messages by Mike Miller (@shelzmike)</title>
		<link>http://mitchlabrador.com/2010/11/05/how-to-change-the-way-jquery-validate-handles-error-messages/#comment-151</link>
		<dc:creator><![CDATA[Mike Miller (@shelzmike)]]></dc:creator>
		<pubDate>Wed, 16 Nov 2011 03:21:51 +0000</pubDate>
		<guid isPermaLink="false">https://mitchlabrador1.wordpress.com/2010/11/05/how-to-change-the-way-jquery-validate-handles-error-messages/#comment-151</guid>
		<description><![CDATA[So I have a really dumb question I think. First of all, I am very new to JQuery (though am familiar with JS and DOM, etc. I am using (attempting to use) this pluging because it seems fantastic. The validation, of course, is no problem. However, the placement of the error messages are. While I will need a few more options than listed above, this is a great start to learning what needs and can be done. So thanks for that.

So, the dumb question - where in the world do I add this? And how does it interact with the rest of the jquery.validate.js?

Thanks!

Mike]]></description>
		<content:encoded><![CDATA[<p>So I have a really dumb question I think. First of all, I am very new to JQuery (though am familiar with JS and DOM, etc. I am using (attempting to use) this pluging because it seems fantastic. The validation, of course, is no problem. However, the placement of the error messages are. While I will need a few more options than listed above, this is a great start to learning what needs and can be done. So thanks for that.</p>
<p>So, the dumb question &#8211; where in the world do I add this? And how does it interact with the rest of the jquery.validate.js?</p>
<p>Thanks!</p>
<p>Mike</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery.Validate 1.7 error does not show in internet explorer by Mitch Labrador</title>
		<link>http://mitchlabrador.com/2010/03/23/jquery-validate-1-7-error-does-not-show-in-internet-explorer/#comment-148</link>
		<dc:creator><![CDATA[Mitch Labrador]]></dc:creator>
		<pubDate>Wed, 26 Oct 2011 00:49:24 +0000</pubDate>
		<guid isPermaLink="false">http://mitchlabrador.com/?p=48#comment-148</guid>
		<description><![CDATA[Sorry it did not work for you Oscar.

jQuery.Validation can be a bit troublesome sometimes.

Regards,
Mitch]]></description>
		<content:encoded><![CDATA[<p>Sorry it did not work for you Oscar.</p>
<p>jQuery.Validation can be a bit troublesome sometimes.</p>
<p>Regards,<br />
Mitch</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery.Validate 1.7 error does not show in internet explorer by Oscar</title>
		<link>http://mitchlabrador.com/2010/03/23/jquery-validate-1-7-error-does-not-show-in-internet-explorer/#comment-147</link>
		<dc:creator><![CDATA[Oscar]]></dc:creator>
		<pubDate>Tue, 25 Oct 2011 03:44:57 +0000</pubDate>
		<guid isPermaLink="false">http://mitchlabrador.com/?p=48#comment-147</guid>
		<description><![CDATA[Unluckily it doesn&#039;t fix the validation problem between jQuery Validate and Internet Explorer. Just a very simple form validation with only one field and check if this field is fielded in, Internet Explorer returns true, the other browsers return false, I don&#039;t know why is that. I tried to set the charset to ISO-8859-1, and no, it didn&#039;t fix.

By the way thanks for this article.]]></description>
		<content:encoded><![CDATA[<p>Unluckily it doesn&#8217;t fix the validation problem between jQuery Validate and Internet Explorer. Just a very simple form validation with only one field and check if this field is fielded in, Internet Explorer returns true, the other browsers return false, I don&#8217;t know why is that. I tried to set the charset to ISO-8859-1, and no, it didn&#8217;t fix.</p>
<p>By the way thanks for this article.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on BigfootMVC: A module development alternative for DotNetNuke &#8211; Part 1: Overview by Linda</title>
		<link>http://mitchlabrador.com/2010/07/19/bigfootmvc-a-module-development-alternative-for-dotnetnuke-part-1-overview/#comment-142</link>
		<dc:creator><![CDATA[Linda]]></dc:creator>
		<pubDate>Sun, 25 Sep 2011 05:18:31 +0000</pubDate>
		<guid isPermaLink="false">https://mitchlabrador1.wordpress.com/2010/07/19/bigfootmvc-a-module-development-alternative-for-dotnetnuke-part-1-overview/#comment-142</guid>
		<description><![CDATA[Hi Mitch,

Great post.  I have just stumbled across your work.  I too have been working with DNN for around 7 years and am in the process of writing my first new app.  I desperately want to go down the MVC route and your framework looks like the perfect solution.  You mentioned that you would be providing some more posts on working with BigfootDNN, any progress on that or do you have any more guidance on using your framework.

Thanks,
Linda]]></description>
		<content:encoded><![CDATA[<p>Hi Mitch,</p>
<p>Great post.  I have just stumbled across your work.  I too have been working with DNN for around 7 years and am in the process of writing my first new app.  I desperately want to go down the MVC route and your framework looks like the perfect solution.  You mentioned that you would be providing some more posts on working with BigfootDNN, any progress on that or do you have any more guidance on using your framework.</p>
<p>Thanks,<br />
Linda</p>
]]></content:encoded>
	</item>
</channel>
</rss>

