Tagged Questions
The richdatatable tag has no wiki summary.
4
votes
1answer
617 views
RichFaces: Release sort column(s) of a DataTable when multiple column sort mode is on
Currently I'm developing a project (JSF 2.0, RichFaces 3.3.3) in which I have to get a 2-columns DataTable with multiple column sorting enabled (I've done this already via sortMode="Multi" property) ...
1
vote
1answer
67 views
deleting Rows in rich:extendedDataTable
I have a rich:extendedDataTable. I have a a4j:commandLink for each row, on click of this the row should get deleted. The problem what I am facing is, if I go on deleting the first rows the ...
1
vote
1answer
370 views
reRender a specific row of rich:dataTable
Good Morning!
Is it possible to reRender only 1 specific row of rich:dataTable?
I have a rich:dataTable and, when I do something that I´m sure only 1 row has changed, I need to reRednder only this ...
1
vote
1answer
148 views
Why my changes into rich:datatable are not available in my home?
I have a rich:Datatable with dynamic columns... Till here its ok... I get all data from the database and my code shows all checkboxs with the correctly values... But when i change them and click in ...
1
vote
2answers
710 views
Richfaces datatable - adding a new row without rerendering the whole datatable on the client side
The new row can be added to the associated server-side collection on an action event of a command button or a command link, and the newly added row can be displayed on the client if the whole table is ...
0
votes
0answers
27 views
How to show hidden columns in rich:extendedDataTable
I have used rich:extendedDataTable of richfaces version 3.3.3. There is a feature which can hide/show a column from the data table from the jsf/xhtml page. Now I have a requirement which want those ...
0
votes
0answers
308 views
richfaces 4 datatable not rendered completely . Error 80020101
I am using RF 4.0 Final with Apache MyFaces 2.0 on Tomcat 7. I just copied the code from RichFaces demo website for datatable and put it in my app. The data table loads the data but the ajax request ...
0
votes
1answer
197 views
Is there anyway to add a loading message to rich:dataTable?
Has anyone found a way of display a loading message while rich:dataTable loads?
I've found that if the load operations backing DataModel takes along time it results in the request taking along time. ...
0
votes
1answer
98 views
Set rows in extendedDataTable as selected from backing bean
I wonder how I can programmaticly set rows in an ExtendedDataTable as selected from my backing bean. I need to edit a user in my web app. The user has some roles so what I want is that when the page ...
0
votes
0answers
35 views
How to reach the action in a rich:subtable?
I am using a rich:dataTable, with a rich:subTable.
And inside the columns, i use rich:menuItem , i have also used a4j:commandLink and a4j:commandButton.
But when i click them, the action is not ...
0
votes
0answers
147 views
Issue facing with richfaces pagination, dataScroller is not displaying correctly
I am new to RichFaces and I am using richfaces 4.0 version. I am facing one issue with pagination.
I am having one page, in which users list will be displayed along with the pagination. In the ...
0
votes
0answers
352 views
Dynamically set max-height for rich:extendedDataTable
I am having problems with the max-height in a rich:extendedDataTable using RichFaces 3.3.3 final.
I would like the table to have a max height, and if the table doesn't fill this height (the number of ...
0
votes
1answer
212 views
Changing background color of the row on click of a link
I am using Richfaces 4. I have a <rich:datatable /> with 4 columns. In that, first column is a <a4j:commandlink /> . I need to change the background color of the entire row when I click on ...
0
votes
0answers
170 views
RichFaces: Select the right item from a filtered rich:dataTable
I have the following problem:
I have a rich:dataTable component (RichFaces 3.3.3) to which I have applied a given filter, but when I select an item from that filtered list, e.g. the second item, the ...
0
votes
0answers
141 views
Iterate in rich:dataTable value over two (or more) lists?
Is it possible to iterate through a rich:dataTable over two (or more) lists, as follows:
<rich:dataTable value="alist, blist" var="a, b">
<h:outputText value="#{a}"/>
...
0
votes
2answers
320 views
Column Click in Rich Faces 4
I am using an extendedDataTable from Richfaces 4. I want to show a detail-page for the element in a row when the user clicks it. Therefore I have added something like
...
0
votes
0answers
271 views
rich:dataTable filtering unique rows on empty textfield?
I have a rich:dataTable whose rows come from a simple JPQL statement:
As you can see, it's a list of sports team, with the team type codes separated by comma being the gender and age group, e.g. ...
0
votes
0answers
130 views
how is selected defined in the following code?
<h:form>
<rich:panel style="width:250px">
<rich:dataTable value="#{airlinesBean.airlines}" var="air">
<a4j:support event="onRowClick">
...
0
votes
1answer
434 views
JSF Rich scroallable Datatable Issue
In a scrollable datatable, which displays a collection of objects , I have to add one manual row as first row. That row contains inputText, through which user can able to enter some values and while ...
0
votes
1answer
457 views
Javascript read data from rich:dataTabel?
I can generate datatable during form initialization.(JSF). Then I want to write javascript for read data from rich:dataTable values
<f:view>
<html>
<head>
<meta ...
0
votes
0answers
465 views
h:selectBooleanCheckbox of rich:DataTable is selected except the last row when ajaxSingle=true is used for the selectAll button
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 ...
0
votes
1answer
858 views
Richfaces: Issue with HTML generation of datascroller/datatable
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">
...
...
0
votes
2answers
952 views
Rich:Columns - FilterBy
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 ...
0
votes
1answer
1k views
rich:datatable and expandable column with internet explorer
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 ...
0
votes
1answer
3k views
Best way to make an expandable/collapsible subTable with rich:dataTable
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 ...