Hi everyone
In my application i want to have multiple lines in a grid cell.
ie,
in a column cell i want to have value like
Name
Address
Is there any property by which i can have this feature. i had tried with h:panelGrid inside the column but it is displaying a gap between the cell and border.
I am using netadvantatge for jsf 2008.1 version
Thanks in advance
Hello Vijayada, You are correct. h:panelGrid inside the column help to place multiple line in the grid cell but, this leave a little gap between cell and border. However, at this point we have no saperate property to accomplish this feature.
<h:panelGrid><h:outputText value="#{DATA_ROW.dttime}"/><h:outputText value="#{DATA_ROW.email}"/></h:panelGrid>
Thank you!
Swetha
Thanks Swetha
i tried giving style="padding:0px;margin:0px": for ig:column tag, and that gap is gone. it is working now