Note that there are some explanatory texts on larger screens.

plurals
  1. POAfter rich:extendedDataTable sortby,otheractions are not getting executed
    primarykey
    data
    text
    <p>I have a RichFaces UI which are having sidebar menu and sidebar had 8 links. I am using Seam @DataModel and @Factory and hibernate criteria to populate all the 8 pages. In all the pages i have sortby functionality which is working fine. I am able to get all data in all the 8 pages and I can freely navigate around all the links/xhtmls. But if in one of the xhtmlpages if I do sorting or groupby after that I am unable to navigate to other pages.If I select any other link the same last query which is executed for sorting is getting executed. Is this an issue? or do I need add any configuration. Please help me in solving this issue. Below is the codesnippet one of the 8 xhtml </p> <pre><code> &lt;rich:column sortable="true" sortBy="#{p.regionid}" width="100px" label="Region Id"&gt; &lt;f:facet name="header"&gt; &lt;h:outputText value="Region Id" /&gt; &lt;/f:facet&gt; &lt;h:outputText value="#{p.regionid}" /&gt; &lt;/rich:column&gt; &lt;rich:column sortable="true" sortBy="#{p.region}" width="100px" label="Region Name"&gt; &lt;f:facet name="header"&gt; &lt;h:outputText value="Region Name" /&gt; &lt;/f:facet&gt; &lt;h:outputText value="#{p.region}" /&gt; &lt;/rich:column&gt; </code></pre> <p>Sidebar </p> <p>Action</p> <pre><code>@DataModel("regions") private List&lt;CoreRegion&gt; listRegions; @Factory("regions") public void getRegions() { System.out.println("Inside get Regions"); Session userDatabase = HibernateUtil.getSession(); Criteria crit = userDatabase.createCriteria(CoreRegion.class); listRegions = crit.list(); </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    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.
    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