I've recently ported an application from JSF 1.1 to JSF 1.2. In the process we removed tomahawk and decided to use rich instead.
Now I need a way to make an expandable/collapsible detailViev for each row in the table.
The only thing I can think of is something along these lines (adapted from documentation at docs.jboss.com):
<rich:da...
I created a simple solution for expandable columns/rows with rich:datatable and rich:column, which is similar to: http://stackoverflow.com/questions/358840
The facelets code is (simplified) as follows:
<rich:dataTable id="detailtable"
value="#{bean.model}"
var="row"
columns="2">
<rich:column id="detail-check">
<...
Good morning!!
I have a dynamic datatable and I'm using Columns of Richfaces, but when I assign the value to FilterBy, it does not work.
Can anyone help me?
Woe is my code ..
<rich:dataTable id="dtAtendimento" value="#{CadastroAtendimentoTecnico.listaAtendimento}" var="atendimento">
<rich:columns index="index" value="#{CadastroAte...
I'm using RichFaces 3.3.1 with JSF RE 1.2 and facelets.
I have a strange issue with the HTML generation of a rich:dataTable connected to a rich:datascroller.
<h:form id="br">
...
<rich:datascroller id="scrt" page="#{searchBookings.page}" stepControls="hide" renderIfSinglePage="false" for="bt" align="left" reRender="ttips,bt"/>
<rich:...
Hi,
I am facing issue related to ajaxSingle for a4j:CommandButton.I have a rich:Datatable with a column of checkboxes(h:selectBooleanCheckbox) and other fields such as firstname, lastname etc.
There is a a4j:commandButton selectAll, when that button is clicked all check boxes should get selected.I have used ajaxSingle= true for the comm...