<?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 Tigraine</title>
	<atom:link href="http://www.tigraine.at/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tigraine.at</link>
	<description>Daniel Hoelbling talks about programming</description>
	<lastBuildDate>Thu, 17 May 2012 10:17:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>Comment on Mapping large text or binary values with NHibernate by Joe</title>
		<link>http://www.tigraine.at/2008/12/19/mapping-large-text-or-binary-values-with-nhibernate/comment-page-1/#comment-5654</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Thu, 17 May 2012 10:17:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.tigraine.at/2008/12/19/mapping-large-text-or-binary-values-with-nhibernate/#comment-5654</guid>
		<description>on 2008 the default length is longer like 2000 character. However it still get chopped off. Your solution works perfect with ntext or nvarchar(max).

Thanks.</description>
		<content:encoded><![CDATA[<p>on 2008 the default length is longer like 2000 character. However it still get chopped off. Your solution works perfect with ntext or nvarchar(max).</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery.validate and Microsofts unobtrusive validation don&#8217;t play well together by Arash</title>
		<link>http://www.tigraine.at/2011/08/26/jquery-validate-and-microsofts-unobtrusive-validation-dont-play-well-together/comment-page-1/#comment-5653</link>
		<dc:creator>Arash</dc:creator>
		<pubDate>Mon, 14 May 2012 02:24:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.tigraine.at/?p=1059#comment-5653</guid>
		<description>I share this pain after spending half a day to come to this conclution.

However we found a way of integrating jQuery.validate with Microsofts unobtrusive validation.

The way to do this is to include the unobtrusive library dynacmically after the $(&#039;form&#039;).Validate({...}); is executed.

This can be done with the follwoing code

$.getScript(&#039;/Scripts/jquery.validate.unobtrusive.js&#039;);</description>
		<content:encoded><![CDATA[<p>I share this pain after spending half a day to come to this conclution.</p>
<p>However we found a way of integrating jQuery.validate with Microsofts unobtrusive validation.</p>
<p>The way to do this is to include the unobtrusive library dynacmically after the $(&#8216;form&#8217;).Validate({&#8230;}); is executed.</p>
<p>This can be done with the follwoing code</p>
<p>$.getScript(&#8216;/Scripts/jquery.validate.unobtrusive.js&#8217;);</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery.validate and Microsofts unobtrusive validation don&#8217;t play well together by Brandon Wittwer</title>
		<link>http://www.tigraine.at/2011/08/26/jquery-validate-and-microsofts-unobtrusive-validation-dont-play-well-together/comment-page-1/#comment-5648</link>
		<dc:creator>Brandon Wittwer</dc:creator>
		<pubDate>Thu, 10 May 2012 21:11:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.tigraine.at/?p=1059#comment-5648</guid>
		<description>You can over-ride any of the options that unobtrusive.js bullies into the mix by doing the following AFTER your form has been parsed by unobtrusive:

$(&#039;form{{or whatever your form id is...}}&#039;).each(function (i, o) {        var settings = $(o).data(&#039;validator&#039;).settings;        settings.errorPlacement = //blah blah
        settings.[whatever other options you need to apply] = //blah blah
});

Only unfortunate thing is, you have to wait to run the above code until after you&#039;ve rendered that form to the browser and parsed it with the validation logic (works great for forms that are parsed at load time, but dynamically generated forms that show up later need this ran for them after they&#039;re parsed by validation.

For more on how to get dynamically generated content to get hooked into jquery.validate.unobtrusive see the following article:

http://xhalent.wordpress.com/2011/01/24/applying-unobtrusive-validation-to-dynamic-content/
</description>
		<content:encoded><![CDATA[<p>You can over-ride any of the options that unobtrusive.js bullies into the mix by doing the following AFTER your form has been parsed by unobtrusive:</p>
<p>$(&#8216;form{{or whatever your form id is&#8230;}}&#8217;).each(function (i, o) {        var settings = $(o).data(&#8216;validator&#8217;).settings;        settings.errorPlacement = //blah blah<br />
        settings.[whatever other options you need to apply] = //blah blah<br />
});</p>
<p>Only unfortunate thing is, you have to wait to run the above code until after you&#8217;ve rendered that form to the browser and parsed it with the validation logic (works great for forms that are parsed at load time, but dynamically generated forms that show up later need this ran for them after they&#8217;re parsed by validation.</p>
<p>For more on how to get dynamically generated content to get hooked into jquery.validate.unobtrusive see the following article:</p>
<p><a href="http://xhalent.wordpress.com/2011/01/24/applying-unobtrusive-validation-to-dynamic-content/" rel="nofollow">http://xhalent.wordpress.com/2011/01/24/applying-unobtrusive-validation-to-dynamic-content/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery.validate and multiple forms on one page by Daniel Hölbling</title>
		<link>http://www.tigraine.at/2011/08/31/jquery-validate-and-multiple-forms-on-one-page/comment-page-1/#comment-5647</link>
		<dc:creator>Daniel Hölbling</dc:creator>
		<pubDate>Wed, 09 May 2012 08:25:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.tigraine.at/?p=1063#comment-5647</guid>
		<description>Yes you are right of course.. I guess I did get confused with writing CoffeeScript and JavaScript at the same time :) Fixing it.. </description>
		<content:encoded><![CDATA[<p>Yes you are right of course.. I guess I did get confused with writing CoffeeScript and JavaScript at the same time <img src='http://www.tigraine.at/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Fixing it.. </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery.validate and multiple forms on one page by carlos</title>
		<link>http://www.tigraine.at/2011/08/31/jquery-validate-and-multiple-forms-on-one-page/comment-page-1/#comment-5646</link>
		<dc:creator>carlos</dc:creator>
		<pubDate>Wed, 09 May 2012 02:01:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.tigraine.at/?p=1063#comment-5646</guid>
		<description>I got a syntax error, I think it should be something like this:
   
$(&#039;form&#039;).each(function(){

    $(this).validate();  }); 


Thanks!
</description>
		<content:encoded><![CDATA[<p>I got a syntax error, I think it should be something like this:<br />
  <br />
$(&#8216;form&#8217;).each(function(){</p>
<p>    $(this).validate();  }); </p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mappin Sql-Time to TimeSpan with NHibernate by Toronto Airport Limo</title>
		<link>http://www.tigraine.at/2011/05/12/mapping-time-to-timespan-with-nhibernate/comment-page-1/#comment-5633</link>
		<dc:creator>Toronto Airport Limo</dc:creator>
		<pubDate>Mon, 30 Apr 2012 11:11:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.tigraine.at/?p=988#comment-5633</guid>
		<description>your examples is good. Thanks for all . </description>
		<content:encoded><![CDATA[<p>your examples is good. Thanks for all .</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mappin Sql-Time to TimeSpan with NHibernate by mis4bos</title>
		<link>http://www.tigraine.at/2011/05/12/mapping-time-to-timespan-with-nhibernate/comment-page-1/#comment-5631</link>
		<dc:creator>mis4bos</dc:creator>
		<pubDate>Sat, 28 Apr 2012 03:37:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.tigraine.at/?p=988#comment-5631</guid>
		<description>Thanks..... </description>
		<content:encoded><![CDATA[<p>Thanks&#8230;..</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mappin Sql-Time to TimeSpan with NHibernate by Vásárlás tabletta</title>
		<link>http://www.tigraine.at/2011/05/12/mapping-time-to-timespan-with-nhibernate/comment-page-1/#comment-5629</link>
		<dc:creator>Vásárlás tabletta</dc:creator>
		<pubDate>Thu, 26 Apr 2012 13:01:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.tigraine.at/?p=988#comment-5629</guid>
		<description>Danielnek igaza van, ez jó megoldás lehet. Köszi.</description>
		<content:encoded><![CDATA[<p>Danielnek igaza van, ez jó megoldás lehet. Köszi.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Howto get rid of *.onetoc2 files using Powershell by Firstknighb</title>
		<link>http://www.tigraine.at/2009/09/01/howto-get-rid-of-onetoc2-files-using-powershell/comment-page-1/#comment-5622</link>
		<dc:creator>Firstknighb</dc:creator>
		<pubDate>Wed, 11 Apr 2012 15:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.tigraine.at/2009/09/01/howto-get-rid-of-onetoc2-files-using-powershell/#comment-5622</guid>
		<description>Thanks a lot, this really worked!!
</description>
		<content:encoded><![CDATA[<p>Thanks a lot, this really worked!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Securely managing database.yml when deploying with Capistrano by Christian Orawetz</title>
		<link>http://www.tigraine.at/2011/09/25/securely-managing-database-yml-when-deploying-with-capistrano/comment-page-1/#comment-5614</link>
		<dc:creator>Christian Orawetz</dc:creator>
		<pubDate>Sun, 08 Apr 2012 17:54:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.tigraine.at/?p=1139#comment-5614</guid>
		<description>One short article, three great solutions. This really helped. Thanks Daniel.</description>
		<content:encoded><![CDATA[<p>One short article, three great solutions. This really helped. Thanks Daniel.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

