<?xml version="1.0" encoding="ISO-8859-1"?>
<rss version="2.0">
    <channel>
        <title>JavaRanch JSF</title>
        <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=forum&amp;f=82</link>
        <description>A Friendly Place for Java Greenhorns</description>
        <image>
            <url>http://saloon.javaranch.com/ubb/moosefly.gif</url>
            <title>JavaRanch Big Moose Saloon</title>
            <link>http://saloon.javaranch.com/</link>
        </image>
        <language>en-us</language>
        <generator>JavaRanch RSS</generator>
        <copyright>Copyright 2007 Paul Wheaton. All Rights Reserved.</copyright>
        <item uniqueID="82-003596">
            <title>Tree structrue with dynamically loaded data</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003596</link>
            <description>Hi!&lt;br /&gt; &lt;br /&gt;I need a tree structure that can render dynamically loaded data.&lt;br /&gt; &lt;br /&gt;I tried richfaces' rich:tree and had a look at tomahawk's and tree2. I know that these two trees can dynamically display the nodes so that only the expanded nodes are send to the client. But after all the data needs to be loaded on the server at the beginning.&lt;br /&gt;But what I need is that on expand of a node I can load the expanded data that needs to be displayed on the server at that time and not from the beginning.&lt;br /&gt; &lt;br /&gt;The data I need to load needs too much time to be loaded by the server from the beginning. So I want it to be loaded when it needs to be displayed.&lt;br /&gt; &lt;br /&gt;I got it working with rich:tree but it had side effects and didn...</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003596</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003596Janina Rebhan</comments>
            <author/>
            <pubDate>Fri, 9 May 2008 03:52:58 MDT</pubDate>
        </item>
        <item uniqueID="82-003595">
            <title>Troubles with cookies in JSF</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003595</link>
            <description>So, I've been working on a "remember my login" feature for my JSF application. My LoginBean has a method call in the constructor that does a check for cookies and logs the user in if necessary. However, I've noticed that on the first request the only cookie is the SESSIONID and not the two custom ones I've put on the machine. Is there anything special I should know in trying to get this to work?&lt;br /&gt; &lt;br /&gt;&lt;blockquote&gt;code:&lt;hr&gt;&lt;pre&gt;&lt;br /&gt;FacesContext facesContext = FacesContext.getCurrentInstance();&lt;br /&gt;HttpServletRequest request = (HttpServletRequest)facesContext.getExternalContext().getRequest();&lt;br /&gt;Cookie[] cookies = request.getKookies(); // should be a C, forum wouldn't let me post it.&lt;br /&gt;&lt;/pre&gt;&lt;hr&gt;&lt;/blockquote&gt;</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003595</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003595Chris Stewart</comments>
            <author/>
            <pubDate>Thu, 8 May 2008 10:46:55 MDT</pubDate>
        </item>
        <item uniqueID="82-003594">
            <title>SelectMany with Custom Converter - getAsObject not called!</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003594</link>
            <description>Ran across this issue on the Sun forums:&lt;br /&gt;http://forum.java.sun.com/thread.jspa?threadID=5289768&amp;tstart=135 (http://forum.java.sun.com/thread.jspa?threadID=5289768&amp;tstart=135)&lt;br /&gt; &lt;br /&gt;I have a custom class Code. I use selectOneMenu with my CodeConverter to populate the list, select a value and give it back to my bean. Works perfectly.&lt;br /&gt; &lt;br /&gt;The issues start when in my bean I change Code to Collection&amp;lt;Code&amp;gt;. I DO NOT get the infamous "Validation Error: Value not valid", but I get 'Conversion Error setting value ' 8009 8007' for '#{activitySeriesBean.activitySeries.targetGroup}'.&lt;br /&gt; &lt;br /&gt;When debugging, I see that in my CodeConvertor 'getAsString' is called to populate my list, but when returning values, 'getAsObject' ...</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003594</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003594Dylan Honorez</comments>
            <author/>
            <pubDate>Thu, 8 May 2008 05:18:55 MDT</pubDate>
        </item>
        <item uniqueID="82-003593">
            <title>BreadCrumb trail</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003593</link>
            <description>Hi there Guys.&lt;br /&gt; &lt;br /&gt;I am using a Stack in my bean to track where a user is a process. I want to display this to the user on there page like a bread crumb trail. I am getting it working with a datatable, but, that displays each step one on top of the other. like this.&lt;br /&gt;page1&lt;br /&gt;page2&lt;br /&gt;page3&lt;br /&gt; &lt;br /&gt;How could I change what I have so that it displays like this.&lt;br /&gt;page1 - page2 - page3 etc...&lt;br /&gt; &lt;br /&gt;I think this is pretty self explanatory so node code. But if you want to see the code, I'll post it.&lt;br /&gt; &lt;br /&gt;thanks.&lt;br /&gt;cheers&lt;br /&gt;Darryl</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003593</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003593Darryl Nortje</comments>
            <author/>
            <pubDate>Thu, 8 May 2008 04:42:55 MDT</pubDate>
        </item>
        <item uniqueID="82-003592">
            <title>About Netbeans Visual JSF Framework</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003592</link>
            <description>Hi&lt;br /&gt; &lt;br /&gt;I am new to JSF and started using Netbeans IDE for working on JSF. In NB 6.1 you have another framework named "Netbeans Visual JSF Framework"&lt;br /&gt;I want to know how similar or different is Visual JSF from JSF.&lt;br /&gt; &lt;br /&gt;Also, can anyone please tell how can I keep a JSF/Visual JSF component in loop so that it is displayed multiple times dynamically?&lt;br /&gt; &lt;br /&gt;Thanks.</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003592</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003592Abhishek Asthana</comments>
            <author/>
            <pubDate>Wed, 7 May 2008 23:02:54 MDT</pubDate>
        </item>
        <item uniqueID="82-003591">
            <title>h:message rendering</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003591</link>
            <description>Hello All, &lt;br /&gt; &lt;br /&gt;Please help me for the following: &lt;br /&gt; &lt;br /&gt;In my JSF application, a webpage has h:messages to display errors to the user which occur when any exception has occured. I have coded this by using the addMessage() which is as follows:&lt;br /&gt; &lt;br /&gt; /**&lt;br /&gt; * Adds the message matching the key in the application's&lt;br /&gt; * resource bundle, formatted with the parameters (if any),&lt;br /&gt; * the the JSF message queue as a global message.&lt;br /&gt; */&lt;br /&gt; protected void addMessage(String messageKey, Object param) {&lt;br /&gt; FacesContext context = FacesContext.getCurrentInstance();&lt;br /&gt; Application application = context.getApplication();&lt;br /&gt; String messageBundleName = application.getMessag...</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003591</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003591Ashok Subramaniam</comments>
            <author/>
            <pubDate>Wed, 7 May 2008 20:30:54 MDT</pubDate>
        </item>
        <item uniqueID="82-003590">
            <title>Refreshing a Page, repeats last action</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003590</link>
            <description>Hello Ranchers,&lt;br /&gt;I am currently developing an application. I'm using Myfaces flavour of JSF. Using a t:dataTable to display the database data. However, there is a button to create new object and another to delete. But each time I either delete or create a new row then refresh the page, the last action is always repeated (and in continues each time I refresh the page), thereby persisting new Object or deleting an existing row from the table. &lt;br /&gt;Please I need help.&lt;br /&gt;Cheers</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003590</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003590Abiodun Okusolubo</comments>
            <author/>
            <pubDate>Wed, 7 May 2008 11:58:53 MDT</pubDate>
        </item>
        <item uniqueID="82-003589">
            <title>JSF and dynamic applet param passing</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003589</link>
            <description>Hi,&lt;br /&gt;I want to pass a param to my applet code dynamicly, but i couldn't.&lt;br /&gt;Here is the code which i have tried.&lt;br /&gt;.............&lt;br /&gt; &amp;lt;f:verbatim&amp;gt;&lt;br /&gt; &amp;lt;jsp:plugin type="applet"&lt;br /&gt; code="VApplet" &lt;br /&gt; codebase="http://172.16.50.142"&lt;br /&gt; width="750"&lt;br /&gt; height="750"&lt;br /&gt; jreversion="1.5"&lt;br /&gt; name="V" &lt;br /&gt; archive="v.jar" mayscript="true"&lt;br /&gt; &amp;gt;&lt;br /&gt; &amp;lt;jsp:params&amp;gt;&lt;br /&gt; &amp;lt;jsp:param name="go" value="#{pageBean.go}"/&amp;gt;&lt;br /&gt; &amp;lt;/jsp:params&amp;gt; &lt;br /&gt; &lt;br /&gt; &amp;lt;/jsp:plugin&amp;gt;&lt;br /&gt; &lt;br /&gt; &amp;lt;/f:verbatim&amp;gt;&lt;br /&gt;..........&lt;br /...</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003589</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003589Hasan Subasi</comments>
            <author/>
            <pubDate>Wed, 7 May 2008 03:08:52 MDT</pubDate>
        </item>
        <item uniqueID="82-003588">
            <title>How to desing Jsps(in JSF) using HTML prototypes </title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003588</link>
            <description>What are the easy steps I need to follow to design jsp's for JSF using html prototypes.&lt;br /&gt; &lt;br /&gt;Thank you in advance.</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003588</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003588shivakumar paka</comments>
            <author/>
            <pubDate>Wed, 7 May 2008 00:52:51 MDT</pubDate>
        </item>
        <item uniqueID="82-003587">
            <title>t:panelTabbedPane and including jsp on click of the tab</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003587</link>
            <description>Hello Ranchers,&lt;br /&gt; &lt;br /&gt;I am having the below code. And what i want to do is that on click of the tabs the respective Jsp should get displayed.&lt;br /&gt;But with the present code its not working out. Can anyone please help me.&lt;br /&gt; &lt;br /&gt;&amp;lt;body&amp;gt;&lt;br /&gt;&amp;lt;center&amp;gt;&amp;lt;f:view&amp;gt;&lt;br /&gt;&amp;lt;h:form&amp;gt;&lt;br /&gt;&amp;lt;h:outputText value="TABBED PANE::::" /&amp;gt;&lt;br /&gt;&amp;lt;t:panelTabbedPane width="900" serverSideTabSwitch="false"&lt;br /&gt;selectedIndex="0"&amp;gt;&lt;br /&gt;&amp;lt;t:panelTab label="Employee Information" rendered="true"&amp;gt;&lt;br /&gt;&amp;lt;t:panelGrid columns="2" border="0"&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;f:verbatim&amp;gt;&lt;br /&gt;&amp;lt;jsp:include page="/include1.jsp" /&amp;gt;&lt;br /&gt;&amp;lt;/f:verbatim&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;/t:panelGrid&amp;gt;&lt;br /&gt;&amp;lt;/t:panelTab&amp;gt;&lt;br /&gt;&amp;lt;t:panelTab l...</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003587</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003587komal ekbote</comments>
            <author/>
            <pubDate>Wed, 7 May 2008 00:18:51 MDT</pubDate>
        </item>
        <item uniqueID="82-003586">
            <title>Obtaining Page URL from Managed bean</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003586</link>
            <description>Please is it possible to obtain the URL of the current page a user is viewing from a managed Bean (Either from FacesContext) or any other means?</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003586</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003586Abiodun Adisa</comments>
            <author/>
            <pubDate>Tue, 6 May 2008 21:08:51 MDT</pubDate>
        </item>
        <item uniqueID="82-003585">
            <title>Creating drop down on fly</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003585</link>
            <description>Hi:&lt;br /&gt;I am trying to setup a very simple page. Two dropdown values of the second one are dependended on the first one:&lt;br /&gt;&lt;blockquote&gt;code:&lt;hr&gt;&lt;pre&gt; &lt;br /&gt;&amp;lt;f:view&amp;gt;&lt;br /&gt;&amp;lt;h:form&amp;gt;&lt;br /&gt;&amp;lt;h:inputText value="#{simple.simple}"&amp;gt;&amp;lt;/h:inputText&amp;gt;&lt;br /&gt;&amp;lt;h:selectOneMenu id="applicationInput" value="#{simple.application}"&amp;gt;&lt;br /&gt;&amp;lt;f:selectItems value="#{simple.applications}" /&amp;gt;&lt;br /&gt;&amp;lt;/h:selectOneMenu&amp;gt;&lt;br /&gt;&amp;lt;h:selectOneMenu id="featureInput" value="#{simple.feature}"&amp;gt;&lt;br /&gt;&amp;lt;f:selectItems value="#{simple.featuresList}" /&amp;gt;&lt;br /&gt;&amp;lt;/h:selectOneMenu&amp;gt;&lt;br /&gt;&amp;lt;h:commandButton action="#{simple.action}" value="submit"&amp;gt;&amp;lt;/h:commandButton&amp;gt;&lt;br /&gt;&amp;lt;/h:form&amp;gt;&lt;br /&gt;&amp;lt;/f:view&amp;gt;&lt;br /&gt;&lt;/pre&gt;&lt;hr...</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003585</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003585Tomasz Wolak</comments>
            <author/>
            <pubDate>Tue, 6 May 2008 17:56:50 MDT</pubDate>
        </item>
        <item uniqueID="82-003584">
            <title>JavaScript form submit fails in IE7, works in FF and Safari</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003584</link>
            <description>I have a test JSF page that I've created with the following piece of code:&lt;br /&gt; &lt;br /&gt;&lt;blockquote&gt;code:&lt;hr&gt;&lt;pre&gt;&amp;lt;f:view contentType="text/html"&amp;gt;&lt;br /&gt; General Stuff to be used for debugging&lt;br /&gt; &amp;lt;h:form id="scratchPadForm"&amp;gt;&lt;br /&gt; &amp;lt;h:inputText value="#{scratch.dummy}" id="dummy"/&amp;gt;&lt;br /&gt; &amp;lt;h:commandButton type="submit" value="Submit" /&amp;gt;&lt;br /&gt; &amp;lt;/h:form&amp;gt;&lt;br /&gt;&amp;lt;/f:view&amp;gt;&lt;/pre&gt;&lt;hr&gt;&lt;/blockquote&gt;&lt;br /&gt; &lt;br /&gt;The 'scratch' bean points to a class I wrote, that implements java.util.Map and uses a HashMap under the covers. I have system.out's in the get and put methods of this backing bean. I'm using RichFaces 1.2 that's bundled with JBoss 4.2.0GA along with facelets, although this page has no facelets code....</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003584</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003584Darth Heizenberg</comments>
            <author/>
            <pubDate>Tue, 6 May 2008 13:10:50 MDT</pubDate>
        </item>
        <item uniqueID="82-003583">
            <title> Split Pane effect with JSF 1.2, Facelets, Javascript, RichFaces </title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003583</link>
            <description>This is a follow up on my previous post and describes the root problem I'm trying to solve.&lt;br /&gt; &lt;br /&gt;I'm working on a JSF project using JSF 1.2 (the implementation that comes bundled with JBoss 4.2.0 GA), Facelets and JBoss RichFaces/Ajax4JSF.&lt;br /&gt; &lt;br /&gt;I basically want to render a page with a nav area and a content area. The content area is to be split in two horizontal areas. The upper horizontal area needs to be a table with scrollable data. When the user clicks a table row, I want to refresh the bottom area with details about the row just clicked. From a UI perspective, it's very similar to yahoo email/outlook... with the top pane showing a list, and the bottom pane showing details.&lt;br /&gt;I've used RichFaces for the data table and p...</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003583</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003583Darth Heizenberg</comments>
            <author/>
            <pubDate>Tue, 6 May 2008 13:08:50 MDT</pubDate>
        </item>
        <item uniqueID="82-003582">
            <title>JSTL + JSF - why wont this work?</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003582</link>
            <description>I am a JSTL newbie. &lt;br /&gt; &lt;br /&gt;Why wont this work? (see below) The JSTL parses properly but what is rendered is not valid. I want different row classes based on a test result. I tried just the rowClasses part of the code with no success. Then I tried the whole dataTable as shown below. DOes anyone see anything wrong? I can cut and paste each option individually and it works.&lt;br /&gt; &lt;br /&gt;&amp;lt;c:choose&amp;gt;&lt;br /&gt;&amp;lt;c:when test="#{common.entityBean.editOrNewMode}"&amp;gt;&lt;br /&gt;&amp;lt;h:dataTable&lt;br /&gt;rowClasses="rowClear"&lt;br /&gt; styleClass="dataTable"&lt;br /&gt; align="center"&lt;br /&gt; var="row"&lt;br /&gt; value="#{unitsList.resultList}"&lt;br /&gt; columnClasses="allCols"&amp;gt;&lt;br /&gt;&amp;lt;/c:when&amp;gt;&lt;br /&gt;&amp;lt;c:otherwise&amp;gt;&lt;br /&gt;&amp;l...</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003582</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003582Dowell Griffin</comments>
            <author/>
            <pubDate>Tue, 6 May 2008 08:12:49 MDT</pubDate>
        </item>
        <item uniqueID="82-003581">
            <title>Problems with h:selectOneRadio</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003581</link>
            <description>I have a component containing timer objects, that are date objects formatted to SelectItems.&lt;br /&gt; &lt;br /&gt;&amp;lt;h:selectOneRadio value="#{timer.selectedTimer}" layout="pageDirection"&lt;br /&gt; &amp;lt;f:selectItems value="#{timer.timers}" /&amp;gt;&lt;br /&gt; &amp;lt;/h:selectOneRadio&amp;gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;In backing bean:&lt;br /&gt;public List&amp;lt;SelectItem&amp;gt; getTimers() {&lt;br /&gt;DateFormat ft = new SimpleDateFormat("HH:mm");&lt;br /&gt; &lt;br /&gt;for(QueueTimer x : timers) {&lt;br /&gt; itemList.add( new SelectItem( ft.format(x.getTimer()), &lt;br /&gt;ft.format(x.getTimer())));&lt;br /&gt; } &lt;br /&gt; return itemList;&lt;br /&gt;}&lt;br /&gt; &lt;br /&gt;On the page i then have one input field and one commandbutton:&lt;br /&gt;&amp;lt;h:inputText value="#{timer.newTime}" size="5"&amp;gt;&amp;lt;f:convertDateTim...</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003581</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003581robert isidorsson</comments>
            <author/>
            <pubDate>Tue, 6 May 2008 04:04:49 MDT</pubDate>
        </item>
        <item uniqueID="82-003580">
            <title>using of properties file in datagrid</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003580</link>
            <description>hi,&lt;br /&gt;i have a small doubt regarding the usage of properties file(resource bundle).&lt;br /&gt;can i use the properties file in datagrid,if so can anyone let me know how?</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003580</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003580Kranthi Kondapaka</comments>
            <author/>
            <pubDate>Tue, 6 May 2008 03:40:49 MDT</pubDate>
        </item>
        <item uniqueID="82-003579">
            <title>Keep-Alive and performance(memory)</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003579</link>
            <description>I notice alot of developers using the Session to store their beans. With the Keep-Alive abilities of jsf pages, would this be a better alternative? Which approach would be better for a system with serious usage, 1000-3000 users at any given time?</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003579</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003579Anthony Sykes</comments>
            <author/>
            <pubDate>Mon, 5 May 2008 18:44:47 MDT</pubDate>
        </item>
        <item uniqueID="82-003578">
            <title>Component ID .... has already been found in the view with t:dataScroller.</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003578</link>
            <description>Hi,&lt;br /&gt; &lt;br /&gt;I am attempting to use the paged, sortable table using Tomahawk's t:dataScroller. I am deploying this in Glassfish app server inside a portlet.&lt;br /&gt; &lt;br /&gt;When I first view the page, there are no issues, the table is rendered properly. After the first rendering, if I refresh the page, it throws the following exception:&lt;br /&gt; &lt;br /&gt;"java.lang.IllegalStateException: Component ID j_id_id8:studentScrollfirst has already been found in the view. See below for details...."&lt;br /&gt; &lt;br /&gt;My JSP page looks like the follows:&lt;br /&gt; &lt;br /&gt;&lt;blockquote&gt;code:&lt;hr&gt;&lt;pre&gt; &lt;br /&gt;&amp;lt;t:dataTable&lt;br /&gt;id="studentTable" &lt;br /&gt;value='#{department.students}' &lt;br /&gt; var="student"&lt;br /&gt; border="0" &lt;br /&gt; rows="5"&lt;br...</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003578</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003578Chandan Rajan</comments>
            <author/>
            <pubDate>Mon, 5 May 2008 11:46:47 MDT</pubDate>
        </item>
        <item uniqueID="82-003577">
            <title>gettting up to date with jsf</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003577</link>
            <description>What are the versions of jsf currently?&lt;br /&gt; &lt;br /&gt;In addition to the latest version, which versions are worth going deep into (because some companies or projects still use it)?</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003577</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003577Jesus Angeles</comments>
            <author/>
            <pubDate>Mon, 5 May 2008 10:20:46 MDT</pubDate>
        </item>
        <item uniqueID="82-003576">
            <title>Render Response phase question</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003576</link>
            <description>I am trying to find out what the specified behavior of the Render Response phase is supposed to be, and have discovered that the JSF spec seems oddly unclear on the topic.&lt;br /&gt; &lt;br /&gt;Here is the question: during the Render Response phase, is the JSF Servlet supposed to call the getters for mapped backing bean properties for rendered pages, or does it get the value for the component from the in-memory component itself? Alternatively, is the behavior unspecified on purpose, giving JSF implementors the ability to do this or not, as they see fit?&lt;br /&gt; &lt;br /&gt;The answer has implications for JSF application design...or, at least, some things developers will need to code around for portability. I may want to change the value in my backing bean ...</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003576</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003576Tom Fulton</comments>
            <author/>
            <pubDate>Mon, 5 May 2008 09:48:46 MDT</pubDate>
        </item>
        <item uniqueID="82-003575">
            <title>JSF</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003575</link>
            <description>Hello All,&lt;br /&gt; &lt;br /&gt;I am using the &amp;lt;t:panelTabbedPane&amp;gt; tag.&lt;br /&gt;What i want to do is on click of the tab, the content displayed should be included from a JSP.&lt;br /&gt; &lt;br /&gt;Can anyone please help me out.</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003575</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003575komal ekbote</comments>
            <author/>
            <pubDate>Mon, 5 May 2008 00:30:45 MDT</pubDate>
        </item>
        <item uniqueID="82-003574">
            <title>classcast exception in bean</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003574</link>
            <description>List&amp;lt;SelectItem&amp;gt; sList = (List&amp;lt;SelectItem&amp;gt;)getExpSessionObj().getExpTypeList();&lt;br /&gt;Iterator&amp;lt;SelectItem&amp;gt; iter = (Iterator&amp;lt;SelectItem&amp;gt;)sList.iterator();&lt;br /&gt;While( iter.hasNext();) {&lt;br /&gt;object item = iter.next().; &lt;br /&gt; log.debug("** item value:"+ item.getClass());&lt;br /&gt; String value = item.getDescription();&lt;br /&gt;// log.debug("** item value:"+ value.getClass());&lt;br /&gt;if (value .equals(Constants.RENT)){&lt;br /&gt;RentalExpense rentType = new RentalExpense();&lt;br /&gt;rentType.setLandlord(new ContactInformation());&lt;br /&gt;//getExpSessionObj().setCurrentExpenseType(rentType);&lt;br /&gt;((List&amp;lt;AbstractExpense&amp;gt;)answer.getAnswer()).add(rentType);&lt;br /&gt;}else{&lt;br /&gt;Expense expense = new RentalExpense();&lt;br /&gt;//getExpSessionO...</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003574</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003574swati cha</comments>
            <author/>
            <pubDate>Sun, 4 May 2008 18:16:35 MDT</pubDate>
        </item>
        <item uniqueID="82-003573">
            <title>Saving the value of a bean property in an attribute</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003573</link>
            <description>Hi all,&lt;br /&gt; &lt;br /&gt;I have request scoped JSF managed bean. This bean has a property named answers of type Hashtable. How can I save this property state in a hidden field in an html form.&lt;br /&gt; &lt;br /&gt;I get a conversion error when I try to do so.&lt;br /&gt; &lt;br /&gt;Any ideas are appreciated.&lt;br /&gt; &lt;br /&gt;Thanks in advance.</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003573</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003573Khaled Mahmoud</comments>
            <author/>
            <pubDate>Sat, 3 May 2008 13:38:32 MDT</pubDate>
        </item>
        <item uniqueID="82-003572">
            <title>Command link with Javascript in Datatable</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003572</link>
            <description>I am using a datatable wherein the first column contains a h:commandLink in every row. On click of the command link I need to display a java script alert message &lt;b&gt;'with values present in the rows displayed' in the javascript&lt;/b&gt;. Primaryly a confirmation message before the value is deleted&lt;br /&gt; &lt;br /&gt;Although I had done with addition of the command link with javascript. I am not able to display the &lt;b&gt;dynamic value&lt;/b&gt; in the confirmation javascript message. &lt;br /&gt; &lt;br /&gt;Can anyone help me with this ?</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003572</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003572Bala Muruganand</comments>
            <author/>
            <pubDate>Sat, 3 May 2008 06:26:31 MDT</pubDate>
        </item>
        <item uniqueID="82-003570">
            <title>How to load a bean for an &amp;quot;edit.jsf&amp;quot; page?</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003570</link>
            <description>I'm attempting to create an edit.jsf page where I pass an ID and have it pre-populate a bean. Can anyone help me in this process? The hyperlink from the main page looks like "edit.jsf?id=12". How can I load my data in order to populate the form fields?</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003570</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003570Chris Stewart</comments>
            <author/>
            <pubDate>Fri, 2 May 2008 11:04:28 MDT</pubDate>
        </item>
        <item uniqueID="82-003569">
            <title>saveStateFieldMarket Message</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003569</link>
            <description>I see the message com.sun.faces.saveStateFieldMarker when the application is started. I dont see any thing in the log. The application is running on OC4J and using JSF 1.1. Any feedback would be appreciated.&lt;br /&gt; &lt;br /&gt;Thanks</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003569</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003569Ashok Yadav</comments>
            <author/>
            <pubDate>Fri, 2 May 2008 09:56:28 MDT</pubDate>
        </item>
        <item uniqueID="82-003568">
            <title>FacesTrace and Richfaces?</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003568</link>
            <description>Hello,&lt;br /&gt;I would like to use &lt;b&gt;FacesTraces &lt;/b&gt;together with &lt;b&gt;Richfaces&lt;/b&gt;. Is that possible? So far I haven't been able to get my ajax request to be traces/analysed by FacesTrace.&lt;br /&gt;Any clue welcome!&lt;br /&gt;Julien.</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003568</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003568Julien Martin</comments>
            <author/>
            <pubDate>Fri, 2 May 2008 09:00:28 MDT</pubDate>
        </item>
        <item uniqueID="82-003567">
            <title>Issue with DataTable - how to control null data set?</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003567</link>
            <description>I am new to JSF and just getting up to speed. Here is the issue. I am writing an app that will primarily consist of a single page. This page consists of a form with search criteris and a data table with results. I am able to get the data table and SQL to work just fine but now I am making the page more dynamic by adding the search criteria. When the page is first displayed the data table gags, of course, because no search criteria has been entered in yet thus the data set is NULL. How do I control for this? I am using a Delegate pattern with a Controller bean as my backing bean. Here is the snippet from the page that shows the data table:&lt;br /&gt; &lt;br /&gt;&amp;lt;h:dataTable border="0" cellpadding="2" cellspacing="0"&lt;br /&gt;columnClasses="columnClass1...</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003567</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003567Daniel Dausch</comments>
            <author/>
            <pubDate>Fri, 2 May 2008 08:40:28 MDT</pubDate>
        </item>
        <item uniqueID="82-003566">
            <title>i have written one Custom Tag lib in jsf , and getting following error</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003566</link>
            <description>java.lang.NullPointerException&lt;br /&gt;at javax.faces.component.UIComponentBase.findComponent(UIComponentBase.java:478)&lt;br /&gt;at coreservlets.GreaterThanValidator.validate(GreaterThanValidator.java:21)&lt;br /&gt;at javax.faces.component.UIInput.validateValue(UIInput.java:770)&lt;br /&gt;at javax.faces.component.UIInput.validate(UIInput.java:634)&lt;br /&gt;at javax.faces.component.UIInput.executeValidate(UIInput.java:838)&lt;br /&gt;at javax.faces.component.UIInput.processValidators(UIInput.java:412)&lt;br /&gt;at javax.faces.component.UIForm.processValidators(UIForm.java:170)&lt;br /&gt;at javax.faces.component.UIComponentBase.processValidators(UIComponentBase.java:904)&lt;br /&gt;at javax.faces.component.UIViewRoot.processValidators(UIViewRoot.java:342)&lt;br /&gt;at com.sun.faces.lifecyc...</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003566</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003566Pushpa devi</comments>
            <author/>
            <pubDate>Fri, 2 May 2008 08:28:28 MDT</pubDate>
        </item>
        <item uniqueID="82-003565">
            <title>Popupwindow using commandlink</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003565</link>
            <description>Hi ,&lt;br /&gt; I need to open a popup from a jsf page.&lt;br /&gt; I tried with 2 options-&lt;br /&gt; &lt;br /&gt; 1. h:commandlink&lt;br /&gt; Problem- It doesnot have onclick event so not able to show popup&lt;br /&gt; &lt;br /&gt; 2. h:outputlink&lt;br /&gt; problem- it doesn't have action or actionListener.&lt;br /&gt; &lt;br /&gt; Actually what i am doing is that--&lt;br /&gt; My application has a datatable and one column has h:commandlink (Store Number)&lt;br /&gt; on click on that i need to interacted with database and open a popup which will show the details of the particular store.&lt;br /&gt;so for that one i need to on bean methos and pass the store number to that method.&lt;br /&gt; &lt;br /&gt;How can i implement these in JSf.&lt;br /&gt; &lt;br /&gt;Please help.</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003565</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003565Dwijen Bhattacharjee</comments>
            <author/>
            <pubDate>Fri, 2 May 2008 08:06:28 MDT</pubDate>
        </item>
        <item uniqueID="82-003564">
            <title>resetting security authorization</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003564</link>
            <description>Hi,&lt;br /&gt;We java a myfaces application in which we have implemented security. Part is declaritive in the web.xml part is java based (used for rendering menu items, or navigation).&lt;br /&gt;Now we often need to assign a role a user using an ldap tool. This all works fine but after the user is added to group/role the application doesnt pick up the new roles. We retrieve whether a user is having a role by using:&lt;br /&gt;FacesContext.getCurrentInstance().getExternalContext().isUserInRole(arg0);&lt;br /&gt;Unless we restart the application (appserver) the role changes are not visible. Is there a way (programatically or otherwise) to force a reload of roles the user is assigned to?&lt;br /&gt;thanks and regards,&lt;br /&gt;Jeroen.&lt;br /&gt;Oh jah I'm using Websphere 6.1.0.13...</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003564</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003564jeroen dijkmeijer</comments>
            <author/>
            <pubDate>Fri, 2 May 2008 03:42:27 MDT</pubDate>
        </item>
        <item uniqueID="82-003563">
            <title>What is the use of Facescontext Context Object</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003563</link>
            <description>Please explain me where the FacesContext Object exactly will be used?</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003563</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003563shivakumar paka</comments>
            <author/>
            <pubDate>Thu, 1 May 2008 23:16:27 MDT</pubDate>
        </item>
        <item uniqueID="82-003562">
            <title>Problems with rich:dataTable</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003562</link>
            <description>Hello to all,&lt;br /&gt; &lt;br /&gt;I'm having a trouble using rich:dataTable.&lt;br /&gt; &lt;br /&gt;In my dataTable, i have some &amp;lt;h:commandLink&amp;gt;, and when they were renderized in the first time, it works! But when i do some requests by the &amp;lt;a4j:commandButton&amp;gt; or when i use the pagination of the &amp;lt;rich:datascroller&amp;gt;, all the commandLinks doesnt works, it shows only static texts.&lt;br /&gt; &lt;br /&gt;Someone can help me with this problem?&lt;br /&gt; &lt;br /&gt;Thank's to all.</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003562</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003562Luciano Assis</comments>
            <author/>
            <pubDate>Thu, 1 May 2008 13:24:25 MDT</pubDate>
        </item>
        <item uniqueID="82-003561">
            <title>Event (or breakpoint) ignored</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003561</link>
            <description>Hi all,&lt;br /&gt; &lt;br /&gt;I have a big problem with a JSF project developed with Netbeans 6.1 (...and also 6.0.1 is the same).&lt;br /&gt; &lt;br /&gt;If I set a breakpoint ato an action_event function (for example linked to a button) of a java baking bean it is ignored, the execution (in debug mode) does not stop.&lt;br /&gt; &lt;br /&gt;It is also possible that the function is not executed at all, causing the missed stop.&lt;br /&gt; &lt;br /&gt;Where is the mistake(s)?&lt;br /&gt; &lt;br /&gt;All thing compile and deploy ok, but ignore button clicks!&lt;br /&gt; &lt;br /&gt;Please, help me!&lt;br /&gt; &lt;br /&gt;Thank you&lt;br /&gt; &lt;br /&gt;Domenico</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003561</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003561D. Formenton</comments>
            <author/>
            <pubDate>Thu, 1 May 2008 02:44:24 MDT</pubDate>
        </item>
        <item uniqueID="82-003560">
            <title>How h:message and h:messages work</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003560</link>
            <description>Hi,&lt;br /&gt;I'm trying to set up a jsf page where the user is prompted for an ID and, when the user presses the the button, it shows a new page with user details if ID exist, or a message on the same request page saying "User does not exist".&lt;br /&gt; &lt;br /&gt;The relevant page is (replaced brackets with []): &lt;br /&gt; &lt;br /&gt;[f:view]&lt;br /&gt; [h:form id="printUser"]&lt;br /&gt;[h:inputText id="myUserID" &lt;br /&gt; value="#{userAvail.userID}" required="true"]&lt;br /&gt;[f:validateLength &lt;br /&gt; minimum="1"][/f:validateLength][/h:inputText]&lt;br /&gt;[h:message showDetail="true" showSummary="true" rendered="true" for="myUserID"][/h:message]&lt;br /&gt;[h:commandButton value="#{bundle.show_user_label}" action="#{userAvail.findUser}" type="submit" title="#{bundle.login_b...</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003560</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003560Francesco Stupazzoni</comments>
            <author/>
            <pubDate>Wed, 30 Apr 2008 07:14:21 MDT</pubDate>
        </item>
        <item uniqueID="82-003559">
            <title>Where to call service methods? backing bean??</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003559</link>
            <description>Hello,&lt;br /&gt; &lt;br /&gt;I am using JSF in my application. Though the application works fine, I have some doubts about the way it's implemented.&lt;br /&gt; &lt;br /&gt;The backing bean code looks like this:&lt;br /&gt; &lt;br /&gt;&lt;blockquote&gt;code:&lt;hr&gt;&lt;pre&gt;&lt;br /&gt;public class ColaPage {&lt;br /&gt; ....&lt;br /&gt; ....&lt;br /&gt; public Cola getCola() {&lt;br /&gt; .. some code...&lt;br /&gt; ...............&lt;br /&gt; .. getColaList()...&lt;br /&gt; ... do some calculations....&lt;br /&gt; ... Cola cola = selectBestCola();&lt;br /&gt; return cola;&lt;br /&gt; }&lt;br /&gt; ...&lt;br /&gt; ...&lt;br /&gt; ...&lt;br /&gt;}&lt;br /&gt;&lt;/pre&gt;&lt;hr&gt;&lt;/blockquote&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;In my xhtml page I get my attributes by using&lt;br /&gt;#{colaPage.cola.name}&lt;br /&gt;#{colaPage.cola.taste}&lt;br /&gt;#{colaPage.cola.temperatue}&lt;br /&gt;...&lt;br ...</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003559</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003559S Bhanu</comments>
            <author/>
            <pubDate>Wed, 30 Apr 2008 05:36:21 MDT</pubDate>
        </item>
        <item uniqueID="82-003558">
            <title>Why JSF...</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003558</link>
            <description>Hi, Iam interesting to know about JSF.So what is JSF why we are using or any free material for that avialble on online?If its there provide the url.Thanks &amp; Regards&lt;br /&gt;Sridhar.R</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003558</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003558sridhar Ranganathan</comments>
            <author/>
            <pubDate>Wed, 30 Apr 2008 01:26:20 MDT</pubDate>
        </item>
        <item uniqueID="82-003557">
            <title>TLD for custom JSF UI component</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003557</link>
            <description>Hi,&lt;br /&gt; &lt;br /&gt;I have implemented a custom JSF UI Component that extends HtmlGraphicImage. I have introduced a couple of new attributes for my tag by specifying them in the tld file. The new attributes work fine.&lt;br /&gt; &lt;br /&gt;But I also want to expose the attributes of h:graphicImage (the component I am extending). To achieve this I have copy pasted graphicImage's attributes from graphicImage's tld file into my tld. Is there a better way to expose the attributes of the base component that I am extending on the tld?&lt;br /&gt; &lt;br /&gt;TIA,&lt;br /&gt;Chandan</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003557</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003557Chandan Rajan</comments>
            <author/>
            <pubDate>Tue, 29 Apr 2008 12:10:19 MDT</pubDate>
        </item>
        <item uniqueID="82-003556">
            <title>Help needed in PageRenderListener</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003556</link>
            <description>Hi,&lt;br /&gt; &lt;br /&gt;I have a bean (configured in faces-config.xml and it is in session scope) which implements PageRenderListener and implemented the following method beforePageRender(PhaseEvent event) and afterPageRender(PhaseEvent event).&lt;br /&gt; &lt;br /&gt;afterPageRender(PhaseEvent event) - No implementation exists in this method.&lt;br /&gt; &lt;br /&gt;beforePageRender(PhaseEvent event) - Resetting backing bean values.&lt;br /&gt; &lt;br /&gt;But when I debug it, I find that beforePageRender(PhaseEvent event) is getting executed 2 times. Is it the JSF behavior or something am doing wrong... &lt;br /&gt; &lt;br /&gt;Please advice.&lt;br /&gt; &lt;br /&gt;Thanks,&lt;br /&gt;Kumar Saravanan</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003556</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003556Kumar Saravanan</comments>
            <author/>
            <pubDate>Tue, 29 Apr 2008 11:30:19 MDT</pubDate>
        </item>
        <item uniqueID="82-003555">
            <title>Show HashMap forEach</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003555</link>
            <description>Hey,&lt;br /&gt; &lt;br /&gt;My problem is that i can't resolve an issue with forEach.&lt;br /&gt;I have hashmap declared in faces-config.xml&lt;br /&gt;&amp;lt;managed-bean&amp;gt;&lt;br /&gt; &amp;lt;managed-bean-name&amp;gt;brg_mapExistings&amp;lt;/managed-bean-name&amp;gt;&lt;br /&gt; &lt;br /&gt;&amp;lt;/managed-bean&amp;gt;</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003555</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003555Mario Fatone</comments>
            <author/>
            <pubDate>Tue, 29 Apr 2008 06:54:18 MDT</pubDate>
        </item>
        <item uniqueID="82-003554">
            <title>Partial page refresh during page onload</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003554</link>
            <description>Hi,&lt;br /&gt; &lt;br /&gt;I am having problems when I make multiple PPR requests through AJAX at the time of onload of a page. This is what I am doing.&lt;br /&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt;I have two panel boxes which have partial triggers from two different command links. So Panel box 1 has a partial trigger to command link L1 and Panel Box 2 has a partial trigger to command link L2. &lt;br /&gt;On onload of the page body I click on command link L1 and L2 which internally calls two methods on a backing bean. &lt;br /&gt; &lt;br /&gt; &lt;br /&gt;The problem I am facing is, when the backing method completes executing, it updates/refreshes only one panel. And this behaviour is very inconsistent. Sometimes panel box 1 gets updated/refreshed while sometimes panel box2 gets updated/refres...</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003554</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003554Swami Gopalan</comments>
            <author/>
            <pubDate>Mon, 28 Apr 2008 17:50:16 MDT</pubDate>
        </item>
        <item uniqueID="82-003553">
            <title>JSF Suggestions needed</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003553</link>
            <description>lets say we have two components on a Page, One component depends on the result of the other component, That is the result displayed by component B is dependent on the result of Component A, and considering the fact that both components concurrently try to obtain data whenever a page is loaded, how do i resolve this</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003553</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003553Abiodun Adisa</comments>
            <author/>
            <pubDate>Mon, 28 Apr 2008 12:36:16 MDT</pubDate>
        </item>
        <item uniqueID="82-003552">
            <title>Displaying total Number of columns in Datatable</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003552</link>
            <description>I am planning on displaying the total number of columns in a Datatable, problem is that datatable is dynamic, it is passed a list that is retrieved from the database &lt;br /&gt; &lt;br /&gt;this is the Datatable&lt;br /&gt; &lt;br /&gt;&amp;lt;t:dataTable var="category" width="700" id="searchList"&lt;br /&gt;rows="10" value="#{searchResult.jobs}"&amp;gt;&lt;br /&gt; &lt;br /&gt;the outputText is supposed to retrieve the length of value="#{searchResult.jobs}"&amp;gt; and display it on the same page as the datatable, Please hod do i implement this?</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003552</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003552Abiodun Adisa</comments>
            <author/>
            <pubDate>Mon, 28 Apr 2008 11:58:16 MDT</pubDate>
        </item>
        <item uniqueID="82-003551">
            <title>Jsf submit using javascript</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003551</link>
            <description>Hello,&lt;br /&gt; &lt;br /&gt;I'm trying to fire a request to a JSP page so it will then submit itself to the server. Is there a way to trigger the server submit via javascript.&lt;br /&gt; &lt;br /&gt;I've looked everywhere and can't find an answer, only one that i saw was iceFaces related.&lt;br /&gt; &lt;br /&gt;Prefereably looking for a partial submit though a standard submit would be fine.&lt;br /&gt; &lt;br /&gt;Thanks,&lt;br /&gt; &lt;br /&gt;Leigh</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003551</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003551Leigh Taylor</comments>
            <author/>
            <pubDate>Sun, 27 Apr 2008 18:10:13 MDT</pubDate>
        </item>
        <item uniqueID="82-003550">
            <title>Navigation using NavigationHandler</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003550</link>
            <description>I am attempting to navigate from a page using the NavigationHandler, I would want to navigate when when the actionListener is invoked, My code is below&lt;br /&gt; &lt;br /&gt;&lt;blockquote&gt;code:&lt;hr&gt;&lt;pre&gt;public void commandButtonClicked(ActionEvent actionEvent) {&lt;br /&gt;FacesContext context=super.getFacesContext();&lt;br /&gt;ApplicationFactory af = (ApplicationFactory)FactoryFinder.getFactory(FactoryFinder.APPLICATION_FACTORY);&lt;br /&gt;Application application=af.getApplication();&lt;br /&gt;NavigationHandler navigation=application.getNavigationHandler();&lt;br /&gt;navigation.handleNavigation(context,null,"\\search.faces"); &lt;br /&gt;context.renderResponse();&lt;br /&gt;}&lt;/pre&gt;&lt;hr&gt;&lt;/blockquote&gt;&lt;br /&gt; &lt;br /&gt;but its not working any suggestions would be welcome</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003550</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003550Abiodun Adisa</comments>
            <author/>
            <pubDate>Sun, 27 Apr 2008 08:50:12 MDT</pubDate>
        </item>
        <item uniqueID="82-003549">
            <title>h:commandbutton javascript</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003549</link>
            <description>I have a JSF button that when i click this invokes a javascript&lt;br /&gt; &lt;br /&gt;&lt;blockquote&gt;code:&lt;hr&gt;&lt;pre&gt;h:commandButton value="testing" action="{index.indexSearchAction}" onklick="invokeJavascript"&amp;gt;&lt;br /&gt;h:commandButton&lt;br /&gt;&lt;/pre&gt;&lt;hr&gt;&lt;/blockquote&gt;&lt;br /&gt;Is there a way to ensure that the Action bean is invoked before the javascript</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003549</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003549Abiodun Adisa</comments>
            <author/>
            <pubDate>Sun, 27 Apr 2008 06:52:11 MDT</pubDate>
        </item>
        <item uniqueID="82-003548">
            <title>Jsf t:JsCookMenu is not working</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003548</link>
            <description>HI ALL,&lt;br /&gt;I am trying to implement t:jsCookMenu to create menu component in jsf page. But i am getting error as your ExtentionFilter configuration is not proper.&lt;br /&gt; &lt;br /&gt;for this even i had mention extention filter configuration in web.xml&lt;br /&gt; &lt;br /&gt;&amp;lt;filter&amp;gt;&lt;br /&gt;&amp;lt;filter-name&amp;gt;MyFacesExtensionsFilter&amp;lt;/filter-name&amp;gt;&lt;br /&gt;&amp;lt;filter-class&amp;gt;org.apache.myfaces.webapp.filter.ExtensionsFilter&amp;lt;/filter-class&amp;gt;&lt;br /&gt; &amp;lt;init-param&amp;gt;&lt;br /&gt; &amp;lt;param-name&amp;gt;maxFileSize&amp;lt;/param-name&amp;gt;&lt;br /&gt; &amp;lt;param-value&amp;gt;20m&amp;lt;/param-value&amp;gt;&lt;br /&gt; &amp;lt;description&amp;gt;Set the size limit for uploaded files.&lt;br /&gt; Format: 10 - 10 bytes&lt;br /&gt; 10k - 10 KB&lt;br /&gt; ...</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003548</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003548Praful Sinha</comments>
            <author/>
            <pubDate>Fri, 25 Apr 2008 04:40:05 MDT</pubDate>
        </item>
        <item uniqueID="82-003547">
            <title>Embedding large generated HTML files to JSF</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003547</link>
            <description>Hello,&lt;br /&gt;my application generates large (&amp;gt;50MB) html reports. &lt;br /&gt;These report files are stored on servers file system, &lt;br /&gt;displayed right after generation and also on user's demand.&lt;br /&gt;Reports are embeded ("dumped") right into JSF page structure (see source code).&lt;br /&gt;&lt;blockquote&gt;code:&lt;hr&gt;&lt;pre&gt;&lt;br /&gt;&amp;lt;f:view&amp;gt;&lt;br /&gt;&amp;lt;h:panelGrid style="mystl" border="1" columns="2" headerClass="mainheader" footerClass="mainfooter" columnClasses="menucol,workspace"&amp;gt;&lt;br /&gt;&amp;lt;f:facet name="header"&amp;gt;&lt;br /&gt;&amp;lt;f:subview id="header"&amp;gt;&lt;br /&gt;&amp;lt;jsp:include page="mainHeader.jsp"&amp;gt;&lt;br /&gt;&amp;lt;jsp:param name="pageName" value="SDA Main Header" /&amp;gt;&lt;br /&gt;&amp;lt;/jsp:include&amp;gt;&lt;br /&gt;&amp;lt;/f:subview&amp;gt;&lt;br /&gt;&amp;lt;/f:facet&amp;gt;&lt;br /&gt;&amp;lt;h:panelGro...</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003547</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003547Mike Barton</comments>
            <author/>
            <pubDate>Fri, 25 Apr 2008 02:54:05 MDT</pubDate>
        </item>
        <item uniqueID="82-003546">
            <title>Default scope of managed-bean-scope?</title>
            <link>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003546</link>
            <description>Could some one tell me what is the default scope of &amp;lt;managed-bean-scope&amp;gt; present in faces-config.xml?</description>
            <guid isPermaLink="true">http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003546</guid>
            <comments>http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&amp;f=82&amp;t=003546Sundeep Ramesh</comments>
            <author/>
            <pubDate>Fri, 25 Apr 2008 01:28:05 MDT</pubDate>
        </item>
    </channel>
</rss>
