Note that there are some explanatory texts on larger screens.

plurals
  1. POrichfaces dataOrderedList and custom back-end list [edit: browser caching !!!]
    primarykey
    data
    text
    <p>I have a backing bean containing this object: <br/>List&lt;Session&gt; sessions;</p> <p>and a Session is an class that has some standard fields but also this: <br/>List&lt;Entry&gt; entries;</p> <p>An Entry is a class that contains several fields but all of them standard java objects.</p> <p>So it's like this.. <em><br/>List&lt;Session&gt; <br/>&nbsp;|-Session <br/>&nbsp;&nbsp;&nbsp;|-List&lt;Entry&gt; <br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|-Entry</em></p> <p>I have tried accessing the List&lt;Entry&gt; directly with success. <br/>But when I try to access the List&lt;Session&gt; I get the following error:</p> <blockquote> <p>javax.faces.FacesException: javax.el.PropertyNotFoundException: /pages/console.jspx @75,109 value="#{session.sessionID}": The class 'org.apache.cata lina.session.StandardSessionFacade' does not have the property 'sessionID'.</p> </blockquote> <p>(sessionID is a String field of Session class)</p> <p><em><strong>Is there any way to fix this ?? (could a converter solve this ?)</em></strong></p> <p>the jspx code is:</p> <pre><code>&lt;rich:dataOrderedList id="sessions" var="session" value="#{backEnd.sessions}" style="position:relative;top:40px"&gt; &lt;rich:togglePanel switchType="client" stateOrder="closed, opened" initialState="#{backEnd.sessionsState}"&gt; &lt;f:facet name="closed"&gt; &lt;rich:toggleControl style="font-weight:bold;" value="#{session.sessionID}" switchToState="opened" /&gt; &lt;/f:facet&gt; </code></pre> <p><br/><br/> Thanks in advance !!</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload