| Author |
dataTable in JSF
|
Dwijen Bhattacharjee
Greenhorn
Joined: Mar 31, 2008
Posts: 26
|
|
Hi all, I am new to JSF .In my application I am using <h:dataTable> to populate a dynamic table .I have two columns "NUMBER" and "NAME".I am using the following Code --- <h:dataTable id="dt1" value="#synergyCustomerManagementBeanHandle.result}" var="item" border="1" cellpadding="0" cellspacing="0" width="100%" bgcolor="white" > <h:column > <f:facet name="header" > <h utputText value="Number" /> </f:facet> <h utputText value="#{item.number}"></h utputText> </h:column> <h:column> <f:facet name="header"> <h utputText value="Name" /> </f:facet> <h utputText value="#{item.name}"></h utputText> </h:column> </h:dataTable> NOw The problem is both the column taking the same space .but i want that the size of the two column will be 20%(NUMBER) and 80%(NAME). but how to do that because <h:column>,<f:facet> nothing cotains property like width . How can I do this kind of alignment? Thanks in Advance.
|
 |
Alexander Bell
Greenhorn
Joined: Mar 31, 2008
Posts: 7
|
|
Hi, you can use the "columnClasses" attribute of the h:dataTable Tag. You can specify for every column one style-class. E.g You can specify styles for the rows as well with the "rowClasses"-Attribute See more Examples with JSF-Datatables on http://www.j4fry.org/J4Fry_Quick_Setup_Tomcat_MyFaces_Hibernate/index.faces --------------------- Visit http://www.j4fry.org
|
Visit <a href="http://www.j4fry.org" target="_blank" rel="nofollow">http://www.j4fry.org</a>
|
 |
Ben Souther
Sheriff
Joined: Dec 11, 2004
Posts: 13410
|
|
"Alexander Bell", Please check your private messages regarding an important administrative matter. -Ben
|
Java API J2EE API Servlet Spec JSP Spec How to ask a question... Simple Servlet Examples jsonf
|
 |
Krishna Srinivasan
Ranch Hand
Joined: Jul 28, 2003
Posts: 1803
|
|
|
DataTable in JSF
|
Krishna Srinivasan
OCAJP Mock Questions
|
 |
 |
|
|
subject: dataTable in JSF
|
|
|