<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	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>Ireth Anarion&#039;s Blog - Code snippets</title>
	<atom:link href="http://irethanarion.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://irethanarion.wordpress.com</link>
	<description>Just another code snippets blog</description>
	<lastBuildDate>Thu, 22 Jul 2010 14:01:21 +0000</lastBuildDate>
	<language>bg</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='irethanarion.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Ireth Anarion&#039;s Blog - Code snippets</title>
		<link>http://irethanarion.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://irethanarion.wordpress.com/osd.xml" title="Ireth Anarion&#039;s Blog - Code snippets" />
	<atom:link rel='hub' href='http://irethanarion.wordpress.com/?pushpress=hub'/>
		<item>
		<title>SQL &#8211; Find all tables in the MS SQL Server DataBase that are missing specific column</title>
		<link>http://irethanarion.wordpress.com/2009/08/06/sql-find-all-tables-in-the-ms-sql-server-database-that-are-missing-specific-column/</link>
		<comments>http://irethanarion.wordpress.com/2009/08/06/sql-find-all-tables-in-the-ms-sql-server-database-that-are-missing-specific-column/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 07:08:51 +0000</pubDate>
		<dc:creator>irethanarion</dc:creator>
				<category><![CDATA[MS SQL Server]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[all]]></category>
		<category><![CDATA[column]]></category>
		<category><![CDATA[DataBase]]></category>
		<category><![CDATA[find]]></category>
		<category><![CDATA[missing]]></category>
		<category><![CDATA[some]]></category>
		<category><![CDATA[tables]]></category>

		<guid isPermaLink="false">http://irethanarion.wordpress.com/?p=152</guid>
		<description><![CDATA[select t.TABLE_CATALOG, t.TABLE_NAME, c.COLUMN_NAME from INFORMATION_SCHEMA.TABLES  t left outer  join INFORMATION_SCHEMA.COLUMNS c on t.TABLE_NAME = c.TABLE_NAME and c.COLUMN_NAME = &#8216;myColumn&#8217; and c.COLUMN_NAME is null Example SQL select, that lists all tables in the database, which are missing some specific column ( in this example &#8211; column named &#8216;myColumn&#8217;. select t.TABLE_CATALOG, t.TABLE_NAME, c.COLUMN_NAME from INFORMATION_SCHEMA.TABLES  t [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=irethanarion.wordpress.com&amp;blog=8445855&amp;post=152&amp;subd=irethanarion&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">select t.TABLE_CATALOG, t.TABLE_NAME, c.COLUMN_NAME from INFORMATION_SCHEMA.TABLES  t</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">left outer  join INFORMATION_SCHEMA.COLUMNS c on t.TABLE_NAME = c.TABLE_NAME and c.COLUMN_NAME = &#8216;myColumn&#8217;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">and c.COLUMN_NAME is null</div>
<p>Example SQL select, that lists all tables in the database, which are missing some specific column ( in this example &#8211; column named &#8216;myColumn&#8217;.  <span style="font-family:monospace;line-height:24px;font-size:15px;color:#444444;"> </span></p>
<pre class="brush: sql;">
select t.TABLE_CATALOG, t.TABLE_NAME, c.COLUMN_NAME from INFORMATION_SCHEMA.TABLES  t

left outer  join INFORMATION_SCHEMA.COLUMNS c on t.TABLE_NAME = c.TABLE_NAME and c.COLUMN_NAME = 'myColumn'

and c.COLUMN_NAME is null 
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/irethanarion.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/irethanarion.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/irethanarion.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/irethanarion.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/irethanarion.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/irethanarion.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/irethanarion.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/irethanarion.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/irethanarion.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/irethanarion.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/irethanarion.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/irethanarion.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/irethanarion.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/irethanarion.wordpress.com/152/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=irethanarion.wordpress.com&amp;blog=8445855&amp;post=152&amp;subd=irethanarion&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://irethanarion.wordpress.com/2009/08/06/sql-find-all-tables-in-the-ms-sql-server-database-that-are-missing-specific-column/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/47022c756762b5593a4adab99f193528?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">irethanarion</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL &#8211; Find all tables in the MS SQL Server DataBase with searched column</title>
		<link>http://irethanarion.wordpress.com/2009/08/06/sql-find-all-tables-in-the-ms-sql-server-database-with-searched-column/</link>
		<comments>http://irethanarion.wordpress.com/2009/08/06/sql-find-all-tables-in-the-ms-sql-server-database-with-searched-column/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 07:03:40 +0000</pubDate>
		<dc:creator>irethanarion</dc:creator>
				<category><![CDATA[MS SQL Server]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[all tables]]></category>
		<category><![CDATA[column]]></category>
		<category><![CDATA[find]]></category>
		<category><![CDATA[in the MS SQL Server DataBase]]></category>
		<category><![CDATA[specific]]></category>
		<category><![CDATA[with searched column]]></category>

		<guid isPermaLink="false">http://irethanarion.wordpress.com/?p=149</guid>
		<description><![CDATA[select t.TABLE_CATALOG, t.TABLE_NAME, c.COLUMN_NAME, c.IS_NULLABLE, c.DATA_TYPE from INFORMATION_SCHEMA.TABLES  t inner  join INFORMATION_SCHEMA.COLUMNS c on t.TABLE_NAME = c.TABLE_NAME and c.COLUMN_NAME = &#8216;SearchedColumnName&#8217; and c.COLUMN_NAME is not null Simple sql select, which result contains all tables in the database, that have specific, searched column. This example lists all tables that have column named &#8216;myColumn&#8217;. select t.TABLE_CATALOG, t.TABLE_NAME, c.COLUMN_NAME, c.IS_NULLABLE, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=irethanarion.wordpress.com&amp;blog=8445855&amp;post=149&amp;subd=irethanarion&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">
<p>select t.TABLE_CATALOG, t.TABLE_NAME, c.COLUMN_NAME, c.IS_NULLABLE, c.DATA_TYPE from INFORMATION_SCHEMA.TABLES  t</p></div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">inner  join INFORMATION_SCHEMA.COLUMNS c on t.TABLE_NAME = c.TABLE_NAME and c.COLUMN_NAME = &#8216;SearchedColumnName&#8217;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">and c.COLUMN_NAME is not null</div>
<p>Simple sql select, which result contains all tables in the database, that have specific, searched column.</p>
<p>This example lists all tables that have column named &#8216;myColumn&#8217;.</p>
<pre class="brush: sql;">
select t.TABLE_CATALOG, t.TABLE_NAME, c.COLUMN_NAME, c.IS_NULLABLE, c.DATA_TYPE
from INFORMATION_SCHEMA.TABLES  t
inner  join INFORMATION_SCHEMA.COLUMNS c
on t.TABLE_NAME = c.TABLE_NAME and c.COLUMN_NAME = 'myColumn'
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/irethanarion.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/irethanarion.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/irethanarion.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/irethanarion.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/irethanarion.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/irethanarion.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/irethanarion.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/irethanarion.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/irethanarion.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/irethanarion.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/irethanarion.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/irethanarion.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/irethanarion.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/irethanarion.wordpress.com/149/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=irethanarion.wordpress.com&amp;blog=8445855&amp;post=149&amp;subd=irethanarion&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://irethanarion.wordpress.com/2009/08/06/sql-find-all-tables-in-the-ms-sql-server-database-with-searched-column/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/47022c756762b5593a4adab99f193528?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">irethanarion</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL &#8211; Find list of all tables in MS SQL Server Database</title>
		<link>http://irethanarion.wordpress.com/2009/08/06/sql-find-list-of-all-tables-in-ms-sql-server-database/</link>
		<comments>http://irethanarion.wordpress.com/2009/08/06/sql-find-list-of-all-tables-in-ms-sql-server-database/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 06:57:53 +0000</pubDate>
		<dc:creator>irethanarion</dc:creator>
				<category><![CDATA[MS SQL Server]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[all]]></category>
		<category><![CDATA[DataBase]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[tables]]></category>

		<guid isPermaLink="false">http://irethanarion.wordpress.com/?p=147</guid>
		<description><![CDATA[select distinct t.TABLE_CATALOG, t.TABLE_NAME from INFORMATION_SCHEMA.TABLES  t left outer  join INFORMATION_SCHEMA.COLUMNS c on t.TABLE_NAME = c.TABLE_NAME select distinct TABLE_CATALOG, TABLE_NAME from INFORMATION_SCHEMA.TABLES<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=irethanarion.wordpress.com&amp;blog=8445855&amp;post=147&amp;subd=irethanarion&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<pre class="brush: sql;">
select distinct t.TABLE_CATALOG, t.TABLE_NAME
from INFORMATION_SCHEMA.TABLES  t
left outer  join INFORMATION_SCHEMA.COLUMNS c
on t.TABLE_NAME = c.TABLE_NAME

select distinct TABLE_CATALOG, TABLE_NAME
from INFORMATION_SCHEMA.TABLES
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/irethanarion.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/irethanarion.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/irethanarion.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/irethanarion.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/irethanarion.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/irethanarion.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/irethanarion.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/irethanarion.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/irethanarion.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/irethanarion.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/irethanarion.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/irethanarion.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/irethanarion.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/irethanarion.wordpress.com/147/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=irethanarion.wordpress.com&amp;blog=8445855&amp;post=147&amp;subd=irethanarion&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://irethanarion.wordpress.com/2009/08/06/sql-find-list-of-all-tables-in-ms-sql-server-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/47022c756762b5593a4adab99f193528?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">irethanarion</media:title>
		</media:content>
	</item>
		<item>
		<title>JSF &#8211; Simple Progress Bar Example</title>
		<link>http://irethanarion.wordpress.com/2009/07/30/jsf-simple-progress-bar-example/</link>
		<comments>http://irethanarion.wordpress.com/2009/07/30/jsf-simple-progress-bar-example/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 06:43:26 +0000</pubDate>
		<dc:creator>irethanarion</dc:creator>
				<category><![CDATA[IBM JWL]]></category>
		<category><![CDATA[JSF]]></category>
		<category><![CDATA[Web programming]]></category>
		<category><![CDATA[exaple]]></category>
		<category><![CDATA[progress bar]]></category>
		<category><![CDATA[progressbar]]></category>
		<category><![CDATA[sipmle]]></category>

		<guid isPermaLink="false">http://irethanarion.wordpress.com/?p=132</guid>
		<description><![CDATA[JavaScript function: function startProgressBar(progBarId, progBarMsg){ hX.getComponentById(progBarId).start(progBarMsg); } JSP Code Snippet: &#60;%–The progress bar –%&#62; &#60;hx:progressBar id=“pBQueue“ auto=“true“ styleClass=“progressBar“ title=“Прогрес“ message=“Прогрес:“ &#62;&#60;/hx:progressBar&#62; &#60;hx:progressBar id=“pBar“ auto=“true“ styleClass=“progressBar“ title=“Show Progress“ message=“Progress:“ &#62;&#60;/hx:progressBar&#62; &#60;%–Button –%&#62; &#60;hx:commandExButton type=“submit“ value=“Filter“ action=“#{mBQueue.filterByCriteria}“ styleClass=“commandExButton“ id=“btnSearchByCriteria“ onclick=“startProgressBar(‘pBar’,'Please wait…’);“&#62; &#60;hx:behavior event=“onclick“ behaviorAction=“get;get“ targetAction=“boxPQCriteria;boxPQResults_rfsh“&#62; &#60;/hx:behavior&#62; &#60;/hx:commandExButton&#62; USEFUL LINK<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=irethanarion.wordpress.com&amp;blog=8445855&amp;post=132&amp;subd=irethanarion&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>JavaScript function:</p>
<pre class="brush: jscript;">
function startProgressBar(progBarId, progBarMsg){
       hX.getComponentById(progBarId).start(progBarMsg);
}
</pre>
<p>JSP Code Snippet:</p>
<pre class="brush: java;">
&lt;%–The progress bar –%&gt;

&lt;hx:progressBar id=“pBQueue“ auto=“true“ styleClass=“progressBar“ title=“Прогрес“ message=“Прогрес:“ &gt;&lt;/hx:progressBar&gt;
&lt;hx:progressBar id=“pBar“ auto=“true“ styleClass=“progressBar“

 title=“Show Progress“ message=“Progress:“ &gt;&lt;/hx:progressBar&gt;

&lt;%–Button –%&gt;

&lt;hx:commandExButton type=“submit“ value=“Filter“

 action=“#{mBQueue.filterByCriteria}“ styleClass=“commandExButton“

 id=“btnSearchByCriteria“ onclick=“startProgressBar(‘pBar’,'Please wait…’);“&gt;

 &lt;hx:behavior event=“onclick“ behaviorAction=“get;get“

 targetAction=“boxPQCriteria;boxPQResults_rfsh“&gt;

&lt;/hx:behavior&gt;

&lt;/hx:commandExButton&gt;
</pre>
<p><a href="http://www.ibm.com/developerworks/rational/library/07/0626_kats/"> USEFUL LINK</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/irethanarion.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/irethanarion.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/irethanarion.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/irethanarion.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/irethanarion.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/irethanarion.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/irethanarion.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/irethanarion.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/irethanarion.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/irethanarion.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/irethanarion.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/irethanarion.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/irethanarion.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/irethanarion.wordpress.com/132/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=irethanarion.wordpress.com&amp;blog=8445855&amp;post=132&amp;subd=irethanarion&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://irethanarion.wordpress.com/2009/07/30/jsf-simple-progress-bar-example/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/47022c756762b5593a4adab99f193528?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">irethanarion</media:title>
		</media:content>
	</item>
		<item>
		<title>JavaScript &#8211; compare two dates, validate date range</title>
		<link>http://irethanarion.wordpress.com/2009/07/29/javascript-compare-two-dates-validate-date-range/</link>
		<comments>http://irethanarion.wordpress.com/2009/07/29/javascript-compare-two-dates-validate-date-range/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 09:32:29 +0000</pubDate>
		<dc:creator>irethanarion</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web programming]]></category>
		<category><![CDATA[compare two dates]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[range]]></category>
		<category><![CDATA[validate]]></category>

		<guid isPermaLink="false">http://irethanarion.wordpress.com/?p=130</guid>
		<description><![CDATA[function validateDateRange(date1Id, date2tId, errMsg){ date1 = document.getElementById(date1Id).value; date2 = document.getElementById(date2Id).value; //alert(date1 + '&#38;lt;&#38;gt;' + date2); if(date1 != null &#38;amp;&#38;amp; date2 != null){ if (Date.parse(date1) &#38;gt; Date.parse(date2)) { document.getElementById(date2Id).value = date1; alert(errMsg); return false; } } return true; }<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=irethanarion.wordpress.com&amp;blog=8445855&amp;post=130&amp;subd=irethanarion&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<pre class="brush: jscript;">
function validateDateRange(date1Id, date2tId, errMsg){
   date1 = document.getElementById(date1Id).value;
   date2 = document.getElementById(date2Id).value;
   //alert(date1 + '&amp;lt;&amp;gt;' + date2);
   if(date1 != null &amp;amp;&amp;amp; date2 != null){
      if (Date.parse(date1) &amp;gt; Date.parse(date2)) {
           document.getElementById(date2Id).value = date1;
           alert(errMsg);
           return false;
      }
  }
  return true;
}
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/irethanarion.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/irethanarion.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/irethanarion.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/irethanarion.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/irethanarion.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/irethanarion.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/irethanarion.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/irethanarion.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/irethanarion.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/irethanarion.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/irethanarion.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/irethanarion.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/irethanarion.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/irethanarion.wordpress.com/130/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=irethanarion.wordpress.com&amp;blog=8445855&amp;post=130&amp;subd=irethanarion&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://irethanarion.wordpress.com/2009/07/29/javascript-compare-two-dates-validate-date-range/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/47022c756762b5593a4adab99f193528?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">irethanarion</media:title>
		</media:content>
	</item>
		<item>
		<title>Get values using parameter passing with JSF and AJAX</title>
		<link>http://irethanarion.wordpress.com/2009/07/15/get-values-using-parameter-passing-with-jsf-and-ajax/</link>
		<comments>http://irethanarion.wordpress.com/2009/07/15/get-values-using-parameter-passing-with-jsf-and-ajax/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 11:22:54 +0000</pubDate>
		<dc:creator>irethanarion</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[IBM JSF]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[JSF]]></category>
		<category><![CDATA[ajaxrefreshrequest]]></category>
		<category><![CDATA[get]]></category>
		<category><![CDATA[param]]></category>
		<category><![CDATA[parameter]]></category>
		<category><![CDATA[pass]]></category>
		<category><![CDATA[refresh]]></category>
		<category><![CDATA[using]]></category>
		<category><![CDATA[value]]></category>

		<guid isPermaLink="false">http://irethanarion.wordpress.com/?p=122</guid>
		<description><![CDATA[EXAMPLE JSP: JSP File: &#60;!DOCTYPE html PUBLIC &#8222;-//W3C//DTD HTML 4.01 Transitional//EN&#8220; &#8222;http://www.w3.org/TR/html4/loose.dtd&#8220;&#62; &#60;%&#8211; jsf:pagecode language=&#8220;java&#8220; location=&#8220;/src/pagecode/cpc/jsf/bp/contextFilters/CtxFilterDocuments.java&#8220; &#8211;%&#62;&#60;%&#8211; /jsf:pagecode &#8211;%&#62;&#60;%@ page language=&#8220;java&#8220; contentType=&#8220;text/html; charset=UTF-8&#8243; pageEncoding=&#8220;UTF-8&#8243;%&#62;&#60;%@ taglib prefix=&#8220;f&#8220; uri=&#8220;http://java.sun.com/jsf/core&#8220;%&#62; &#60;%@ taglib prefix=&#8220;h&#8220; uri=&#8220;http://java.sun.com/jsf/html&#8220;%&#62; &#60;%@taglib uri=&#8220;http://www.ibm.com/jsf/html_extended&#8220; prefix=&#8220;hx&#8220;%&#62;&#60;html&#62; &#60;head&#62; &#60;meta http-equiv=&#8220;Content-Type&#8220; content=&#8220;text/html; charset=UTF-8&#8243;&#62; &#60;title&#62;Insert title here&#60;/title&#62; &#60;/head&#62; &#60;hx:scriptCollector id=&#8220;scCtxFDocs&#8220;&#62; &#60;f:subview id=&#8220;svCtxFDocs&#8220;&#62; &#60;hx:panelBox styleClass=&#8220;panelBox&#8220; id=&#8220;boxCtxFilterDocs&#8220; layout=&#8220;pageDirection&#8220; border=&#8220;0&#8243; cellpadding=&#8220;0&#8243; cellspacing=&#8220;0&#8243;&#62; &#60;hx:panelBox [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=irethanarion.wordpress.com&amp;blog=8445855&amp;post=122&amp;subd=irethanarion&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>EXAMPLE JSP:</p>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">JSP File:</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;!DOCTYPE html PUBLIC &#8222;-//W3C//DTD HTML 4.01 Transitional//EN&#8220; &#8222;http://www.w3.org/TR/html4/loose.dtd&#8220;&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;%&#8211; jsf:pagecode language=&#8220;java&#8220; location=&#8220;/src/pagecode/cpc/jsf/bp/contextFilters/CtxFilterDocuments.java&#8220; &#8211;%&gt;&lt;%&#8211; /jsf:pagecode &#8211;%&gt;&lt;%@ page</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;"><span style="white-space:pre;"> </span>language=&#8220;java&#8220; contentType=&#8220;text/html; charset=UTF-8&#8243;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;"><span style="white-space:pre;"> </span>pageEncoding=&#8220;UTF-8&#8243;%&gt;&lt;%@ taglib prefix=&#8220;f&#8220;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;"><span style="white-space:pre;"> </span>uri=&#8220;http://java.sun.com/jsf/core&#8220;%&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;%@ taglib prefix=&#8220;h&#8220; uri=&#8220;http://java.sun.com/jsf/html&#8220;%&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;%@taglib uri=&#8220;http://www.ibm.com/jsf/html_extended&#8220; prefix=&#8220;hx&#8220;%&gt;&lt;html&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;head&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;meta http-equiv=&#8220;Content-Type&#8220; content=&#8220;text/html; charset=UTF-8&#8243;&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;title&gt;Insert title here&lt;/title&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;/head&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;hx:scriptCollector id=&#8220;scCtxFDocs&#8220;&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;"><span style="white-space:pre;"> </span>&lt;f:subview id=&#8220;svCtxFDocs&#8220;&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;"><span style="white-space:pre;"> </span>&lt;hx:panelBox styleClass=&#8220;panelBox&#8220; id=&#8220;boxCtxFilterDocs&#8220;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;"><span style="white-space:pre;"> </span>layout=&#8220;pageDirection&#8220; border=&#8220;0&#8243; cellpadding=&#8220;0&#8243; cellspacing=&#8220;0&#8243;&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;"><span style="white-space:pre;"> </span></div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;hx:panelBox styleClass=&#8220;panelBox&#8220; id=&#8220;boxDocCriteria&#8220;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;"><span style="white-space:pre;"> </span>layout=&#8220;lineDirection&#8220; align=&#8220;left&#8220; valign=&#8220;top&#8220; cellpadding=&#8220;0&#8243;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;"><span style="white-space:pre;"> </span>cellspacing=&#8220;0&#8243;&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;"><span style="white-space:pre;"> </span>&lt;h:panelGrid columns=&#8220;1&#8243;&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;"><span style="white-space:pre;"> </span>&lt;h:outputText styleClass=&#8220;outputText&#8220; value=&#8220;Reg. ID&#8220;&gt;&lt;/h:outputText&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;"><span style="white-space:pre;"> </span>&lt;h:inputText styleClass=&#8220;inputText&#8220; id=&#8220;prmDocsRegId&#8220;&gt;&lt;/h:inputText&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;"><span style="white-space:pre;"> </span>&lt;/h:panelGrid&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;"><span style="white-space:pre;"> </span>&lt;h:panelGrid columns=&#8220;1&#8243;&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;"><span style="white-space:pre;"> </span>&lt;h:outputText styleClass=&#8220;outputText&#8220; value=&#8220;Reg. Num&#8220;&gt;&lt;/h:outputText&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;"><span style="white-space:pre;"> </span>&lt;h:inputText styleClass=&#8220;inputText&#8220; id=&#8220;prmDocsRegNum&#8220;&gt;&lt;/h:inputText&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;"><span style="white-space:pre;"> </span>&lt;/h:panelGrid&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;"><span style="white-space:pre;"> </span>&lt;/hx:panelBox&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;"><span style="white-space:pre;"> </span></div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;"><span style="white-space:pre;"> </span>&lt;hx:ajaxRefreshRequest target=&#8220;boxDocsResults&#8220; id=&#8220;arrboxDocsResults&#8220;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;"><span style="white-space:pre;"> </span>params=&#8220;prmDocsRegId;prmDocsRegNum&#8220;&gt;&lt;/hx:ajaxRefreshRequest&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;"><span style="white-space:pre;"> </span></div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;"><span style="white-space:pre;"> </span>&lt;hx:panelBox styleClass=&#8220;panelBox&#8220; id=&#8220;boxDocsButtons&#8220;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;"><span style="white-space:pre;"> </span>layout=&#8220;lineDirection&#8220; cellpadding=&#8220;0&#8243; cellspacing=&#8220;0&#8243;&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;"><span style="white-space:pre;"> </span>&lt;hx:commandExButton type=&#8220;button&#8220; value=&#8220;Търси&#8220;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;"><span style="white-space:pre;"> </span>styleClass=&#8220;commandExButton&#8220; id=&#8220;btnSearchDocsDialog&#8220;&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;"><span style="white-space:pre;"> </span>&lt;hx:behavior event=&#8220;onclick&#8220; behaviorAction=&#8220;get&#8220;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;"><span style="white-space:pre;"> </span>id=&#8220;bhv_btnSearchDocsDialog&#8220; targetAction=&#8220;boxDocsResults&#8220;&gt;&lt;/hx:behavior&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;"><span style="white-space:pre;"> </span>&lt;/hx:commandExButton&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;"><span style="white-space:pre;"> </span>&lt;/hx:panelBox&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;"><span style="white-space:pre;"> </span>&lt;hx:panelBox styleClass=&#8220;panelBox&#8220; id=&#8220;boxDocsResults&#8220; border=&#8220;0&#8243;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;"><span style="white-space:pre;"> </span>layout=&#8220;pageDirection&#8220; cellpadding=&#8220;0&#8243; cellspacing=&#8220;0&#8243;&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;"><span style="white-space:pre;"> </span></div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;h:outputText id=&#8220;prm1Label&#8220; value=&#8220;prmDocsRegId value&#8220; /&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;h:outputText id=&#8220;prm1&#8243; value=&#8220;#{mBResults.prm1}&#8220; /&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;"><span style="white-space:pre;"> </span></div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;h:outputText id=&#8220;prm1Label&#8220; value=&#8220;prmDocsRegNum value&#8220; /&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;h:outputText id=&#8220;prm2&#8243; value=&#8220;#{mBResults.prm2}&#8220; /&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;"><span style="white-space:pre;"> </span>&lt;/hx:panelBox&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;"><span style="white-space:pre;"> </span>&lt;/hx:panelBox&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;"><span style="white-space:pre;"> </span>&lt;/f:subview&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;/hx:scriptCollector&gt;</div>
<div id="_mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;">&lt;/html&gt;</div>
<p>&lt;!DOCTYPE html PUBLIC &#8222;-//W3C//DTD HTML 4.01 Transitional//EN&#8220; &#8222;http://www.w3.org/TR/html4/loose.dtd&#8220;&gt;</p>
<p>&lt;%&#8211; jsf:pagecode language=&#8220;java&#8220; location=&#8220;/src/pagecode/cpc/jsf/bp/contextFilters/CtxFilterDocuments.java&#8220; &#8211;%&gt;&lt;%&#8211; /jsf:pagecode &#8211;%&gt;&lt;%@ page</p>
<p><span style="white-space:pre;"> </span>language=&#8220;java&#8220; contentType=&#8220;text/html; charset=UTF-8&#8243;</p>
<p><span style="white-space:pre;"> </span>pageEncoding=&#8220;UTF-8&#8243;%&gt;&lt;%@ taglib prefix=&#8220;f&#8220;</p>
<p><span style="white-space:pre;"> </span>uri=&#8220;http://java.sun.com/jsf/core&#8220;%&gt;</p>
<p>&lt;%@ taglib prefix=&#8220;h&#8220; uri=&#8220;http://java.sun.com/jsf/html&#8220;%&gt;</p>
<p>&lt;%@taglib uri=&#8220;http://www.ibm.com/jsf/html_extended&#8220; prefix=&#8220;hx&#8220;%&gt;&lt;html&gt;</p>
<p>&lt;head&gt;</p>
<p>&lt;meta http-equiv=&#8220;Content-Type&#8220; content=&#8220;text/html; charset=UTF-8&#8243;&gt;</p>
<p>&lt;title&gt;Insert title here&lt;/title&gt;</p>
<p>&lt;/head&gt;</p>
<p>&lt;hx:scriptCollector id=&#8220;scCtxFDocs&#8220;&gt;</p>
<p><span style="white-space:pre;"> </span>&lt;f:subview id=&#8220;svCtxFDocs&#8220;&gt;</p>
<p style="padding-left:30px;"><span style="white-space:pre;"> </span>&lt;hx:panelBox styleClass=&#8220;panelBox&#8220; id=&#8220;boxCtxFilterDocs&#8220;</p>
<p style="padding-left:30px;"><span style="white-space:pre;"> </span>layout=&#8220;pageDirection&#8220; border=&#8220;0&#8243; cellpadding=&#8220;0&#8243; cellspacing=&#8220;0&#8243;&gt;</p>
<p style="padding-left:30px;"><span style="white-space:pre;"> </span></p>
<p style="padding-left:30px;">&lt;hx:panelBox styleClass=&#8220;panelBox&#8220; id=&#8220;boxDocCriteria&#8220;</p>
<p style="padding-left:30px;"><span style="white-space:pre;"> </span>layout=&#8220;lineDirection&#8220; align=&#8220;left&#8220; valign=&#8220;top&#8220; cellpadding=&#8220;0&#8243;</p>
<p style="padding-left:30px;"><span style="white-space:pre;"> </span>cellspacing=&#8220;0&#8243;&gt;</p>
<p style="padding-left:30px;"><span style="white-space:pre;"> </span>&lt;h:panelGrid columns=&#8220;1&#8243;&gt;</p>
<p style="padding-left:30px;"><span style="white-space:pre;"> </span>&lt;h:outputText styleClass=&#8220;outputText&#8220; value=&#8220;Reg. ID&#8220;&gt;&lt;/h:outputText&gt;</p>
<p style="padding-left:30px;"><span style="white-space:pre;"> </span>&lt;h:inputText styleClass=&#8220;inputText&#8220; id=&#8220;prmDocsRegId&#8220;&gt;&lt;/h:inputText&gt;</p>
<p style="padding-left:30px;"><span style="white-space:pre;"> </span>&lt;/h:panelGrid&gt;</p>
<p style="padding-left:30px;"><span style="white-space:pre;"> </span>&lt;h:panelGrid columns=&#8220;1&#8243;&gt;</p>
<p style="padding-left:30px;"><span style="white-space:pre;"> </span>&lt;h:outputText styleClass=&#8220;outputText&#8220; value=&#8220;Reg. Num&#8220;&gt;&lt;/h:outputText&gt;</p>
<p style="padding-left:30px;"><span style="white-space:pre;"> </span>&lt;h:inputText styleClass=&#8220;inputText&#8220; id=&#8220;prmDocsRegNum&#8220;&gt;&lt;/h:inputText&gt;</p>
<p style="padding-left:30px;"><span style="white-space:pre;"> </span>&lt;/h:panelGrid&gt;</p>
<p style="padding-left:30px;"><span style="white-space:pre;"> </span>&lt;/hx:panelBox&gt;</p>
<p style="padding-left:30px;"><span style="white-space:pre;"> </span></p>
<p style="padding-left:30px;"><span style="white-space:pre;"> </span>&lt;hx:ajaxRefreshRequest target=&#8220;boxDocsResults&#8220; id=&#8220;arrboxDocsResults&#8220;</p>
<p style="padding-left:30px;"><span style="white-space:pre;"> </span>params=&#8220;prmDocsRegId;prmDocsRegNum&#8220;&gt;&lt;/hx:ajaxRefreshRequest&gt;</p>
<p style="padding-left:30px;"><span style="white-space:pre;"> </span></p>
<p style="padding-left:30px;"><span style="white-space:pre;"> </span>&lt;hx:panelBox styleClass=&#8220;panelBox&#8220; id=&#8220;boxDocsButtons&#8220;</p>
<p style="padding-left:30px;"><span style="white-space:pre;"> </span>layout=&#8220;lineDirection&#8220; cellpadding=&#8220;0&#8243; cellspacing=&#8220;0&#8243;&gt;</p>
<p style="padding-left:30px;"><span style="white-space:pre;"> </span>&lt;hx:commandExButton type=&#8220;button&#8220; value=&#8220;Търси&#8220;</p>
<p style="padding-left:30px;"><span style="white-space:pre;"> </span>styleClass=&#8220;commandExButton&#8220; id=&#8220;btnSearchDocsDialog&#8220;&gt;</p>
<p style="padding-left:30px;"><span style="white-space:pre;"> </span>&lt;hx:behavior event=&#8220;onclick&#8220; behaviorAction=&#8220;get&#8220;</p>
<p style="padding-left:30px;"><span style="white-space:pre;"> </span>id=&#8220;bhv_btnSearchDocsDialog&#8220; targetAction=&#8220;boxDocsResults&#8220;&gt;&lt;/hx:behavior&gt;</p>
<p style="padding-left:30px;"><span style="white-space:pre;"> </span>&lt;/hx:commandExButton&gt;</p>
<p style="padding-left:30px;"><span style="white-space:pre;"> </span>&lt;/hx:panelBox&gt;</p>
<p style="padding-left:30px;"><span style="white-space:pre;"> </span>&lt;hx:panelBox styleClass=&#8220;panelBox&#8220; id=&#8220;boxDocsResults&#8220; border=&#8220;0&#8243;</p>
<p style="padding-left:30px;"><span style="white-space:pre;"> </span>layout=&#8220;pageDirection&#8220; cellpadding=&#8220;0&#8243; cellspacing=&#8220;0&#8243;&gt;</p>
<p style="padding-left:30px;"><span style="white-space:pre;"> </span></p>
<p style="padding-left:30px;">&lt;h:outputText id=&#8220;prm1Label&#8220; value=&#8220;prmDocsRegId value&#8220; /&gt;</p>
<p style="padding-left:30px;">&lt;h:outputText id=&#8220;prm1&#8243; value=&#8220;#{mBResults.prm1}&#8220; /&gt;</p>
<p style="padding-left:30px;"><span style="white-space:pre;"> </span></p>
<p style="padding-left:30px;">&lt;h:outputText id=&#8220;prm1Label&#8220; value=&#8220;prmDocsRegNum value&#8220; /&gt;</p>
<p style="padding-left:30px;">&lt;h:outputText id=&#8220;prm2&#8243; value=&#8220;#{mBResults.prm2}&#8220; /&gt;</p>
<p style="padding-left:30px;"><span style="white-space:pre;"> </span>&lt;/hx:panelBox&gt;</p>
<p style="padding-left:30px;"><span style="white-space:pre;"> </span>&lt;/hx:panelBox&gt;</p>
<p><span style="white-space:pre;"> </span>&lt;/f:subview&gt;</p>
<p>&lt;/hx:scriptCollector&gt;</p>
<p>&lt;/html&gt;</p>
<p>JAVA CLASS:</p>
<p>public class MBSearchedResults{</p>
<p style="padding-left:30px;"><span style="white-space:pre;"> </span>Map&lt;String, String&gt; ctxMap;</p>
<p style="padding-left:30px;"><span style="white-space:pre;"> </span>private String prm1;</p>
<p style="padding-left:30px;"><span style="white-space:pre;"> </span>private String prm2;</p>
<p style="padding-left:30px;"><span style="white-space:pre;"> </span>public MBSearchedResults() {</p>
<p style="padding-left:60px;"><span style="white-space:pre;"> </span>super();</p>
<p style="padding-left:60px;"><span style="white-space:pre;"> </span>this.ctxMap = FacesContext.getCurrentInstance().getExternalContext()</p>
<p style="padding-left:60px;"><span style="white-space:pre;"> </span>.getRequestParameterMap();</p>
<p style="padding-left:30px;"><span style="white-space:pre;"> </span>}</p>
<p style="padding-left:30px;">public String getPrm1(){</p>
<p style="padding-left:60px;"><span style="white-space:pre;"> </span>// Взимаме си параметрите</p>
<p style="padding-left:60px;"><span style="white-space:pre;"> </span>String pprmDocsRegId = this.ctxMap.get(&#8222;prmDocsRegId&#8220;);</p>
<p style="padding-left:60px;"><span style="white-space:pre;"> </span>if (pprmDocsRegId != null) {</p>
<p style="padding-left:90px;"><span style="white-space:pre;"> </span>this.prm1 =  pprmDocsRegId;</p>
<p style="padding-left:60px;"><span style="white-space:pre;"> </span>}</p>
<p style="padding-left:60px;">return this.prm1;</p>
<p style="padding-left:30px;">}</p>
<p style="padding-left:30px;">public String getPrm2(){</p>
<p style="padding-left:60px;"><span style="white-space:pre;"> </span>String pprmDocsRegNum = this.ctxMap.get(&#8222;prmDocsRegNum&#8220;);</p>
<p style="padding-left:60px;"><span style="white-space:pre;"> </span>if (pprmDocsRegNum != null) {</p>
<p style="padding-left:90px;"><span style="white-space:pre;"> </span>this.prm2 =  pprmDocsRegNum;</p>
<p style="padding-left:60px;"><span style="white-space:pre;"> </span>}</p>
<p style="padding-left:60px;">return this.prm2;</p>
<p style="padding-left:30px;">}<span style="white-space:pre;"> </span></p>
<p>}</p>
<p><code> </code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/irethanarion.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/irethanarion.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/irethanarion.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/irethanarion.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/irethanarion.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/irethanarion.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/irethanarion.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/irethanarion.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/irethanarion.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/irethanarion.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/irethanarion.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/irethanarion.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/irethanarion.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/irethanarion.wordpress.com/122/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=irethanarion.wordpress.com&amp;blog=8445855&amp;post=122&amp;subd=irethanarion&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://irethanarion.wordpress.com/2009/07/15/get-values-using-parameter-passing-with-jsf-and-ajax/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/47022c756762b5593a4adab99f193528?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">irethanarion</media:title>
		</media:content>
	</item>
		<item>
		<title>Java &#8211; Another enumeration example</title>
		<link>http://irethanarion.wordpress.com/2009/07/15/java-another-enumeration-example/</link>
		<comments>http://irethanarion.wordpress.com/2009/07/15/java-another-enumeration-example/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 10:18:50 +0000</pubDate>
		<dc:creator>irethanarion</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[enum]]></category>
		<category><![CDATA[enumeration]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[params]]></category>
		<category><![CDATA[two]]></category>

		<guid isPermaLink="false">http://irethanarion.wordpress.com/?p=127</guid>
		<description><![CDATA[public enum MapNomValues { ref_type_1(&#34;sysNameRefType1&#34;, &#34;name1&#34;), ref_type_2(&#34;sysNameRefType2&#34;, &#34;name2&#34;), ref_type_3(&#34;sysNameRefType3&#34;, &#34;name3&#34;); private String sysName; private String name; private MapNomValues(String sysName, String name) { this.sysName = sysName; this.name = name; } private MapNomValues(String value) { this.sysName = value; } public String getSysName() { return this.sysName; } public String getName() { return this.name; } } Results: ref_type_1.getName(); returns [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=irethanarion.wordpress.com&amp;blog=8445855&amp;post=127&amp;subd=irethanarion&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<pre class="brush: java;">

public enum MapNomValues {
ref_type_1(&quot;sysNameRefType1&quot;, &quot;name1&quot;),
ref_type_2(&quot;sysNameRefType2&quot;, &quot;name2&quot;),
ref_type_3(&quot;sysNameRefType3&quot;, &quot;name3&quot;);
private String sysName;
private String name;
private MapNomValues(String sysName, String name) {
this.sysName = sysName;
this.name = name;
}
private MapNomValues(String value) {
this.sysName = value;
}
public String getSysName() {
return this.sysName;
}
public String getName() {
return this.name;
}
}
</pre>
<p>Results:<br />
ref_type_1.getName(); returns -&gt; name1<br />
ref_type_1.getSysName(); returns -&gt; sysNameRefType1</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/irethanarion.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/irethanarion.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/irethanarion.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/irethanarion.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/irethanarion.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/irethanarion.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/irethanarion.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/irethanarion.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/irethanarion.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/irethanarion.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/irethanarion.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/irethanarion.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/irethanarion.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/irethanarion.wordpress.com/127/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=irethanarion.wordpress.com&amp;blog=8445855&amp;post=127&amp;subd=irethanarion&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://irethanarion.wordpress.com/2009/07/15/java-another-enumeration-example/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/47022c756762b5593a4adab99f193528?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">irethanarion</media:title>
		</media:content>
	</item>
		<item>
		<title>Java &#8211; Clone objects &#8211; example</title>
		<link>http://irethanarion.wordpress.com/2009/07/15/java-clone-objects-example/</link>
		<comments>http://irethanarion.wordpress.com/2009/07/15/java-clone-objects-example/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 07:55:38 +0000</pubDate>
		<dc:creator>irethanarion</dc:creator>
				<category><![CDATA[Clone]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[clone]]></category>
		<category><![CDATA[Cloneable]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[java.lang.Cloneable]]></category>
		<category><![CDATA[object]]></category>

		<guid isPermaLink="false">http://irethanarion.wordpress.com/?p=123</guid>
		<description><![CDATA[For objects cloning, you can use java.lang.Cloneable. It is not applicable for deep cloning (for deep cloning use Serialization), because you should control the overall clone process, but it works for simple cloning in most cases. To use clone() method, you should implement java.lang.Cloneable and override clone(), because it is not visible. There is an [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=irethanarion.wordpress.com&amp;blog=8445855&amp;post=123&amp;subd=irethanarion&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>For objects cloning, you can use java.lang.Cloneable. It is not applicable for deep cloning (for deep cloning use Serialization), because you should control the overall clone process, but it works for simple cloning in most cases.<br />
To use clone() method, you should implement java.lang.Cloneable and override clone(), because it is not visible. There is an example:</p>
<p>public abstract class Criteria implements Cloneable {</p>
<p style="padding-left:30px;">Criteria() {</p>
<p style="padding-left:60px;">super();</p>
<p style="padding-left:30px;">}</p>
<p style="padding-left:30px;">@Override<br />
public Object clone() {</p>
<p style="padding-left:60px;">try {</p>
<p style="padding-left:90px;">return super.clone();</p>
<p style="padding-left:60px;">} catch (CloneNotSupportedException e) {</p>
<p style="padding-left:90px;">e.printStackTrace();<br />
return null;</p>
<p style="padding-left:60px;">}</p>
<p style="padding-left:30px;">}</p>
<p>}</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/irethanarion.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/irethanarion.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/irethanarion.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/irethanarion.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/irethanarion.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/irethanarion.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/irethanarion.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/irethanarion.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/irethanarion.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/irethanarion.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/irethanarion.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/irethanarion.wordpress.com/123/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/irethanarion.wordpress.com/123/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/irethanarion.wordpress.com/123/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=irethanarion.wordpress.com&amp;blog=8445855&amp;post=123&amp;subd=irethanarion&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://irethanarion.wordpress.com/2009/07/15/java-clone-objects-example/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/47022c756762b5593a4adab99f193528?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">irethanarion</media:title>
		</media:content>
	</item>
		<item>
		<title>Java &#8211; Scanner example</title>
		<link>http://irethanarion.wordpress.com/2009/07/08/java-scanner-example/</link>
		<comments>http://irethanarion.wordpress.com/2009/07/08/java-scanner-example/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 13:42:20 +0000</pubDate>
		<dc:creator>irethanarion</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[scanner]]></category>

		<guid isPermaLink="false">http://irethanarion.wordpress.com/?p=65</guid>
		<description><![CDATA[package com.xxxxx.tests; import java.util.Scanner; public class ScannerExample{ /** * @param args */ public static void main(String[] args){ Scanner scan = new Scanner(System.in); System.out.println(&#8222;Write smthng: &#8222;); String a = scan.next(); System.out.println(&#8222;Smthng: &#8220; + a); } }<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=irethanarion.wordpress.com&amp;blog=8445855&amp;post=65&amp;subd=irethanarion&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>package com.xxxxx.tests;</p>
<p>import java.util.Scanner;</p>
<p>public class ScannerExample{</p>
<p style="padding-left:30px;"><span style="white-space:pre;"> </span>/**</p>
<p style="padding-left:30px;"><span style="white-space:pre;"> </span> * @param args</p>
<p style="padding-left:30px;"><span style="white-space:pre;"> </span> */</p>
<p style="padding-left:30px;"><span style="white-space:pre;"> </span>public static void main(String[] args){</p>
<p style="padding-left:60px;"><span style="white-space:pre;"> </span>Scanner scan = new Scanner(System.in);</p>
<p style="padding-left:60px;"><span style="white-space:pre;"> </span>System.out.println(&#8222;Write smthng: &#8222;);</p>
<p style="padding-left:60px;"><span style="white-space:pre;"> </span>String a = scan.next();</p>
<p style="padding-left:60px;"><span style="white-space:pre;"> </span>System.out.println(&#8222;Smthng: &#8220; + a);</p>
<p style="padding-left:30px;"><span style="white-space:pre;"> </span>}</p>
<p>}</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/irethanarion.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/irethanarion.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/irethanarion.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/irethanarion.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/irethanarion.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/irethanarion.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/irethanarion.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/irethanarion.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/irethanarion.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/irethanarion.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/irethanarion.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/irethanarion.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/irethanarion.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/irethanarion.wordpress.com/65/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=irethanarion.wordpress.com&amp;blog=8445855&amp;post=65&amp;subd=irethanarion&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://irethanarion.wordpress.com/2009/07/08/java-scanner-example/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/47022c756762b5593a4adab99f193528?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">irethanarion</media:title>
		</media:content>
	</item>
		<item>
		<title>JSF &#8211; IBM DatePicker, choose first day of the week &#8211; example</title>
		<link>http://irethanarion.wordpress.com/2009/07/08/jsf-ibm-datepicker-choose-week-begin-day-example/</link>
		<comments>http://irethanarion.wordpress.com/2009/07/08/jsf-ibm-datepicker-choose-week-begin-day-example/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 13:16:11 +0000</pubDate>
		<dc:creator>irethanarion</dc:creator>
				<category><![CDATA[IBM JWL]]></category>
		<category><![CDATA[JSF]]></category>
		<category><![CDATA[Web programming]]></category>
		<category><![CDATA[chooser]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[firstDay="1"]]></category>
		<category><![CDATA[hx:convertDateTime]]></category>
		<category><![CDATA[hx:inputHelperDatePicker]]></category>
		<category><![CDATA[IBM]]></category>
		<category><![CDATA[jsf tree example]]></category>
		<category><![CDATA[JWL]]></category>
		<category><![CDATA[picker]]></category>

		<guid isPermaLink="false">http://irethanarion.wordpress.com/?p=83</guid>
		<description><![CDATA[Ако искате първият ден от седмицата в календара ви да е понеделник просто трябва да добавите /firstDay=&#8220;1&#8243;/. &#60;h:inputText id=&#8220;calExample&#8220; styleClass=&#8220;inputText&#8220; value=&#8220;#{mBean.dateRealBegin}&#8220;&#62; &#60;hx:convertDateTime pattern=&#8220;#{mBean.dateFormat}&#8220; /&#62; &#60;hx:inputHelperDatePicker id=&#8220;calExampleDatePicker&#8220; firstDay=&#8220;1&#8243; /&#62; &#60;/h:inputText&#62;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=irethanarion.wordpress.com&amp;blog=8445855&amp;post=83&amp;subd=irethanarion&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ако искате първият ден от седмицата в календара ви да е понеделник просто трябва да добавите /firstDay=&#8220;1&#8243;/.</p>
<p>&lt;h:inputText id=&#8220;calExample&#8220;</p>
<p><span style="white-space:pre;"> </span>styleClass=&#8220;inputText&#8220;</p>
<p><span style="white-space:pre;"> </span>value=&#8220;#{mBean.dateRealBegin}&#8220;&gt;</p>
<p><span style="white-space:pre;"> </span>&lt;hx:convertDateTime pattern=&#8220;#{mBean.dateFormat}&#8220; /&gt;</p>
<p><span style="white-space:pre;"> </span>&lt;hx:inputHelperDatePicker id=&#8220;calExampleDatePicker&#8220; firstDay=&#8220;1&#8243; /&gt;</p>
<p><span style="white-space:pre;"> </span>&lt;/h:inputText&gt;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/irethanarion.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/irethanarion.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/irethanarion.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/irethanarion.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/irethanarion.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/irethanarion.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/irethanarion.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/irethanarion.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/irethanarion.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/irethanarion.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/irethanarion.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/irethanarion.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/irethanarion.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/irethanarion.wordpress.com/83/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=irethanarion.wordpress.com&amp;blog=8445855&amp;post=83&amp;subd=irethanarion&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://irethanarion.wordpress.com/2009/07/08/jsf-ibm-datepicker-choose-week-begin-day-example/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/47022c756762b5593a4adab99f193528?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">irethanarion</media:title>
		</media:content>
	</item>
	</channel>
</rss>
