<?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/"
		>
<channel>
	<title>Comments for Hans Rasmussen</title>
	<atom:link href="http://www.hansrasmussen.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.hansrasmussen.com</link>
	<description>info@hansrasmussen.com, +46 (0)723 207008</description>
	<lastBuildDate>Sat, 30 Apr 2011 10:39:54 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Validation with jQuery validator plugin by sami</title>
		<link>http://www.hansrasmussen.com/2010/05/validation-with-jquery-validator-plugin/comment-page-1/#comment-136</link>
		<dc:creator>sami</dc:creator>
		<pubDate>Sat, 30 Apr 2011 10:39:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.hansrasmussen.com/?p=776#comment-136</guid>
		<description>Nice Post</description>
		<content:encoded><![CDATA[<p>Nice Post</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Enable AJAX Support in SharePoint,WSS, MOSS 2007 by syed shoaib adil</title>
		<link>http://www.hansrasmussen.com/2010/02/enable-ajax-support-in-sharepointwss-moss-2007/comment-page-1/#comment-135</link>
		<dc:creator>syed shoaib adil</dc:creator>
		<pubDate>Thu, 10 Feb 2011 19:37:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.hansrasmussen.com/?p=46#comment-135</guid>
		<description>when i m making feature active, its also changing sessionstate tag on MOSS server while in WSS server there is no sessionState tag

if i dont wanna replace that sessionState tag what should i do?

please reply ASAP</description>
		<content:encoded><![CDATA[<p>when i m making feature active, its also changing sessionstate tag on MOSS server while in WSS server there is no sessionState tag</p>
<p>if i dont wanna replace that sessionState tag what should i do?</p>
<p>please reply ASAP</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CRM Web reference vs CRM SDK by charles</title>
		<link>http://www.hansrasmussen.com/2010/02/crm-web-reference-vs-crm-sdk/comment-page-1/#comment-134</link>
		<dc:creator>charles</dc:creator>
		<pubDate>Tue, 30 Nov 2010 14:21:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.hansrasmussen.com/?p=24#comment-134</guid>
		<description>Dear,

My question is about the performance issue between the two methods. i noticed that using CRM SDK is much faster than using a reference to the CRM Web service.
Kindly, can you explain this big difference in the performance ?

Best Regards.</description>
		<content:encoded><![CDATA[<p>Dear,</p>
<p>My question is about the performance issue between the two methods. i noticed that using CRM SDK is much faster than using a reference to the CRM Web service.<br />
Kindly, can you explain this big difference in the performance ?</p>
<p>Best Regards.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Validation with jQuery validator plugin by andy</title>
		<link>http://www.hansrasmussen.com/2010/05/validation-with-jquery-validator-plugin/comment-page-1/#comment-132</link>
		<dc:creator>andy</dc:creator>
		<pubDate>Thu, 09 Sep 2010 19:38:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.hansrasmussen.com/?p=776#comment-132</guid>
		<description>I just want to extract the text message part and place in the input box. Im doing it this way in errorPlacement.

element.val(error.text())

Problem is if you click submit again with the error message in input box it might validate.

I have found that using this plugin is just to much trouble for what I want to do. I made a pure javascript solution in about an hour. If you know javascript and jquery you really dont need this plugin. 

I think error message in the text box if big enough is the best way to go. It saves space and looks slick. Error messages on the side is so dated.</description>
		<content:encoded><![CDATA[<p>I just want to extract the text message part and place in the input box. Im doing it this way in errorPlacement.</p>
<p>element.val(error.text())</p>
<p>Problem is if you click submit again with the error message in input box it might validate.</p>
<p>I have found that using this plugin is just to much trouble for what I want to do. I made a pure javascript solution in about an hour. If you know javascript and jquery you really dont need this plugin. </p>
<p>I think error message in the text box if big enough is the best way to go. It saves space and looks slick. Error messages on the side is so dated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Validation with jQuery validator plugin by Hans Rasmussen</title>
		<link>http://www.hansrasmussen.com/2010/05/validation-with-jquery-validator-plugin/comment-page-1/#comment-131</link>
		<dc:creator>Hans Rasmussen</dc:creator>
		<pubDate>Wed, 08 Sep 2010 19:31:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.hansrasmussen.com/?p=776#comment-131</guid>
		<description>Yes you can do that. By providing your own placeholders in relation to the input, select, textarea element you can easily decide where the error output should go. The example below you can use as an example, and with some work you could probably find a space where it would not push your elements and destroy your layout.

E g.
        $(document).ready(function () {
            $(&quot;#yourform&quot;).validate(
            {
                errorPlacement: function (error, element) {
                    // find the parent div of the validated element and look for any child elements with class errorbox
                    var errorBox = element.parent(&quot;div&quot;).children(&quot;.errorbox&quot;);
                    // if element with class &#039;errorBox&#039; is found- use it - else inject as normal
                    if (errorBox.length == 1)
                        error.appendTo(errorBox);
                    else
                        error.insertAfter(element);
                }
            });
        });

</description>
		<content:encoded><![CDATA[<p>Yes you can do that. By providing your own placeholders in relation to the input, select, textarea element you can easily decide where the error output should go. The example below you can use as an example, and with some work you could probably find a space where it would not push your elements and destroy your layout.</p>
<p>E g.<br />
        $(document).ready(function () {<br />
            $(&#8220;#yourform&#8221;).validate(<br />
            {<br />
                errorPlacement: function (error, element) {<br />
                    // find the parent div of the validated element and look for any child elements with class errorbox<br />
                    var errorBox = element.parent(&#8220;div&#8221;).children(&#8220;.errorbox&#8221;);<br />
                    // if element with class &#8216;errorBox&#8217; is found- use it &#8211; else inject as normal<br />
                    if (errorBox.length == 1)<br />
                        error.appendTo(errorBox);<br />
                    else<br />
                        error.insertAfter(element);<br />
                }<br />
            });<br />
        });</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Validation with jQuery validator plugin by andy</title>
		<link>http://www.hansrasmussen.com/2010/05/validation-with-jquery-validator-plugin/comment-page-1/#comment-130</link>
		<dc:creator>andy</dc:creator>
		<pubDate>Wed, 08 Sep 2010 18:28:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.hansrasmussen.com/?p=776#comment-130</guid>
		<description>Looks like this will be helpful. Would you know if you can just place the error text right in the input box? Using labels for me breaks my layout. Suppose can hack the errorPlacement

Thank you for this post.</description>
		<content:encoded><![CDATA[<p>Looks like this will be helpful. Would you know if you can just place the error text right in the input box? Using labels for me breaks my layout. Suppose can hack the errorPlacement</p>
<p>Thank you for this post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Vacation South Africa, Mocambique, Swaziland by Christian</title>
		<link>http://www.hansrasmussen.com/2010/02/vacation-south-africa-mocambique-swaziland/comment-page-1/#comment-3</link>
		<dc:creator>Christian</dc:creator>
		<pubDate>Sun, 21 Feb 2010 00:43:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.hansrasmussen.com/?p=372#comment-3</guid>
		<description>Hi Hans,

Very nice vacation pictures you got going there. Which camera have you been using?</description>
		<content:encoded><![CDATA[<p>Hi Hans,</p>
<p>Very nice vacation pictures you got going there. Which camera have you been using?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

