<?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 rossenstoyanchev.org Blog</title>
	<atom:link href="http://rossenstoyanchev.org/blog/index.php/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://rossenstoyanchev.org/blog</link>
	<description>Professional blog about enterprise software development</description>
	<lastBuildDate>Tue, 29 Nov 2011 22:14:17 -0800</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
	<item>
		<title>Comment on Bean Validation Messages in JSF 2 by Administrator</title>
		<link>http://rossenstoyanchev.org/blog/2010/10/03/bean-validation-messages-in-jsf-2/comment-page-1/#comment-82789</link>
		<dc:creator>Administrator</dc:creator>
		<pubDate>Tue, 29 Nov 2011 22:14:17 +0000</pubDate>
		<guid isPermaLink="false">http://rossenstoyanchev.org/blog/?p=37#comment-82789</guid>
		<description>Hartwig, yes that works but then you have to add the message to every field in addition to the label on the input field.</description>
		<content:encoded><![CDATA[<p>Hartwig, yes that works but then you have to add the message to every field in addition to the label on the input field.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bean Validation Messages in JSF 2 by Hartwig</title>
		<link>http://rossenstoyanchev.org/blog/2010/10/03/bean-validation-messages-in-jsf-2/comment-page-1/#comment-82508</link>
		<dc:creator>Hartwig</dc:creator>
		<pubDate>Fri, 18 Nov 2011 20:42:25 +0000</pubDate>
		<guid isPermaLink="false">http://rossenstoyanchev.org/blog/?p=37#comment-82508</guid>
		<description>Why not annotating:
@NotEmpty(message=&quot;Credit card is a required field&quot;) ?
At least for me this works...</description>
		<content:encoded><![CDATA[<p>Why not annotating:<br />
@NotEmpty(message=&#8221;Credit card is a required field&#8221;) ?<br />
At least for me this works&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bean Validation Messages in JSF 2 by Matt Handy</title>
		<link>http://rossenstoyanchev.org/blog/2010/10/03/bean-validation-messages-in-jsf-2/comment-page-1/#comment-80538</link>
		<dc:creator>Matt Handy</dc:creator>
		<pubDate>Mon, 18 Jul 2011 12:23:20 +0000</pubDate>
		<guid isPermaLink="false">http://rossenstoyanchev.org/blog/?p=37#comment-80538</guid>
		<description>Thank you, this works!</description>
		<content:encoded><![CDATA[<p>Thank you, this works!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bean Validation Messages in JSF 2 by Daniel Camargo</title>
		<link>http://rossenstoyanchev.org/blog/2010/10/03/bean-validation-messages-in-jsf-2/comment-page-1/#comment-79892</link>
		<dc:creator>Daniel Camargo</dc:creator>
		<pubDate>Sat, 11 Jun 2011 13:59:34 +0000</pubDate>
		<guid isPermaLink="false">http://rossenstoyanchev.org/blog/?p=37#comment-79892</guid>
		<description>You can also define the key:

javax.faces.validator.BeanValidator.MESSAGE_detail

In case you need the summary and the detail message displayed.</description>
		<content:encoded><![CDATA[<p>You can also define the key:</p>
<p>javax.faces.validator.BeanValidator.MESSAGE_detail</p>
<p>In case you need the summary and the detail message displayed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adding Ajax Behavior to the Displaytag Library by Saqib Chowdhry</title>
		<link>http://rossenstoyanchev.org/blog/2007/10/14/add-ajax-to-the-displaytag-library/comment-page-1/#comment-72637</link>
		<dc:creator>Saqib Chowdhry</dc:creator>
		<pubDate>Wed, 27 Oct 2010 17:24:04 +0000</pubDate>
		<guid isPermaLink="false">http://rossenstoyanchev.org/blog/?p=5#comment-72637</guid>
		<description>awesome Ross!!!  just found this suggestion.  I want to override the DisplayTag&#039;s click sort headers so that sorting happens with an ORDER BY clause in the SQL query.  If i have 5000 rows in the list, i don&#039;t want the sorting to be done in memory... i&#039;d rather fire another query and let the DB engine take care of it.

I will give this a try... hopefully it works with jQuery instead of Dojo.</description>
		<content:encoded><![CDATA[<p>awesome Ross!!!  just found this suggestion.  I want to override the DisplayTag&#8217;s click sort headers so that sorting happens with an ORDER BY clause in the SQL query.  If i have 5000 rows in the list, i don&#8217;t want the sorting to be done in memory&#8230; i&#8217;d rather fire another query and let the DB engine take care of it.</p>
<p>I will give this a try&#8230; hopefully it works with jQuery instead of Dojo.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on @MVC &#8211; The Not So Obvious by Saqib Chowdhry</title>
		<link>http://rossenstoyanchev.org/blog/2008/10/14/mvc-the-not-so-obvious/comment-page-1/#comment-71498</link>
		<dc:creator>Saqib Chowdhry</dc:creator>
		<pubDate>Fri, 15 Oct 2010 16:05:04 +0000</pubDate>
		<guid isPermaLink="false">http://rossenstoyanchev.org/blog/2008/10/14/mvc-the-not-so-obvious/#comment-71498</guid>
		<description>Hey Ross,

   Hope all is well... saw that you have a new role as the Spring Web Flow development engineer lead.  Congrats!

I am using Spring MVC 2.5 at work these days, and this is my first jump into Spring and Spring MVC full-time.  I am having some issues understanding all the different methods that are available to the controllers like:

showForm
formBackingObject
referenceData
onBind
etc...

and the sequence in which all of these methods are called in relation with the handleRequest and onSubmit methods.  It would be very helpful if you can point me to a diagram or PowerPoint presentation that would give me that sequence diagram laid out well.

Appreciate the help, and all the best to you in your new role!</description>
		<content:encoded><![CDATA[<p>Hey Ross,</p>
<p>   Hope all is well&#8230; saw that you have a new role as the Spring Web Flow development engineer lead.  Congrats!</p>
<p>I am using Spring MVC 2.5 at work these days, and this is my first jump into Spring and Spring MVC full-time.  I am having some issues understanding all the different methods that are available to the controllers like:</p>
<p>showForm<br />
formBackingObject<br />
referenceData<br />
onBind<br />
etc&#8230;</p>
<p>and the sequence in which all of these methods are called in relation with the handleRequest and onSubmit methods.  It would be very helpful if you can point me to a diagram or PowerPoint presentation that would give me that sequence diagram laid out well.</p>
<p>Appreciate the help, and all the best to you in your new role!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dojo Unit Tests (DOH) And Firefox 3 by Robin Gaal</title>
		<link>http://rossenstoyanchev.org/blog/2009/01/03/dojo-unit-tests-and-firefox-3/comment-page-1/#comment-47318</link>
		<dc:creator>Robin Gaal</dc:creator>
		<pubDate>Wed, 07 Apr 2010 11:39:11 +0000</pubDate>
		<guid isPermaLink="false">http://rossenstoyanchev.org/blog/2009/01/03/dojo-unit-tests-and-firefox-3/#comment-47318</guid>
		<description>Here is an easier workaround to use D.O.H. with mozilla 3:

about:config (type in addressbar)
set attribute : security.fileuri.strict_origin_policy to false</description>
		<content:encoded><![CDATA[<p>Here is an easier workaround to use D.O.H. with mozilla 3:</p>
<p>about:config (type in addressbar)<br />
set attribute : security.fileuri.strict_origin_policy to false</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dojo Unit Tests (DOH) And Firefox 3 by robin</title>
		<link>http://rossenstoyanchev.org/blog/2009/01/03/dojo-unit-tests-and-firefox-3/comment-page-1/#comment-47005</link>
		<dc:creator>robin</dc:creator>
		<pubDate>Wed, 31 Mar 2010 11:14:20 +0000</pubDate>
		<guid isPermaLink="false">http://rossenstoyanchev.org/blog/2009/01/03/dojo-unit-tests-and-firefox-3/#comment-47005</guid>
		<description>1 year later and still not fixed...</description>
		<content:encoded><![CDATA[<p>1 year later and still not fixed&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GSP and JSP by Administrator</title>
		<link>http://rossenstoyanchev.org/blog/2009/08/18/gsp-and-jsp/comment-page-1/#comment-43863</link>
		<dc:creator>Administrator</dc:creator>
		<pubDate>Sat, 09 Jan 2010 10:49:22 +0000</pubDate>
		<guid isPermaLink="false">http://rossenstoyanchev.org/blog/2009/08/18/gsp-and-jsp/#comment-43863</guid>
		<description>You&#039;re right juhu. Displaytag is a very feature-rich tag library (perhaps a little bit to the detriment of clarity) whereas the Grails paginate tag is more narrowly focused on pagination as its name indicates. What I had in mind was that displaytag wraps the generation of the entire table, which in turn requires you to know how to customize its style, links, query parameters, etc.</description>
		<content:encoded><![CDATA[<p>You&#8217;re right juhu. Displaytag is a very feature-rich tag library (perhaps a little bit to the detriment of clarity) whereas the Grails paginate tag is more narrowly focused on pagination as its name indicates. What I had in mind was that displaytag wraps the generation of the entire table, which in turn requires you to know how to customize its style, links, query parameters, etc.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GSP and JSP by juhu</title>
		<link>http://rossenstoyanchev.org/blog/2009/08/18/gsp-and-jsp/comment-page-1/#comment-42959</link>
		<dc:creator>juhu</dc:creator>
		<pubDate>Tue, 15 Dec 2009 16:59:02 +0000</pubDate>
		<guid isPermaLink="false">http://rossenstoyanchev.org/blog/2009/08/18/gsp-and-jsp/#comment-42959</guid>
		<description>But Displaytag does more then paginate. It also groups, format and export the lists to csv, pdf, excel an xml.</description>
		<content:encoded><![CDATA[<p>But Displaytag does more then paginate. It also groups, format and export the lists to csv, pdf, excel an xml.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.367 seconds -->

