jsp « Datatable « JSF Q&A





1. How do I display a list of Person objects in a h:dataTable?    stackoverflow.com

I have a list of Person objects with properties like height, sex, colour, etc in a backing bean. How do I display those objects in a h:dataTable in JSF?

2. refresh a data in a datatable on the screen(jsp)    stackoverflow.com

i have a datatable in my jsp, which fetches data from database. i've included a link in each row of the datatable which on click goes to another jsp(history.jsp) taking 2 ...

3. JSF error while using datatable    stackoverflow.com

Possible Duplicate:
jsf datatable problem with var attribute
Hello all, I am doing a JSF application using datatable..Following is the code--
<h:dataTable id="dt1" value="#{dbdata.empno}" var="item" bgcolor="#F1F1F1" border="10" cellpadding="5" ...

4. How to change row to column in datatable    stackoverflow.com

h:datatable created table like this

column 1 column 2
 item 1    item 1
 item 2    item 2
 item 3     ....
But it is ...

5. JSF access to the "var" attribute value from dataTable from jsp    stackoverflow.com

I'm using JSF 1.1. I have a JSP page with a

    ....
    <t:dataTable id="data"
       styleClass="scrollerTable"
  ...