• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Column Width in ICEFACES

 
Greenhorn
Posts: 12
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I am new to ICEFaces and i am creating a page which has a table.
In the table one of the column widths is too long, that I want to reduce. I tried various ways but couldnot succeed.
This is my snippet from my code

<ice:dataTable columnClasses="tablecol" border="1"
value="#{showConnectionsInfo.connectionInfo}" var="connection">
<ice:column style ="clientIdCol">
<f:facet name="header">
<ice:outputText value="Client Id" />
</f:facet>
<ice:outputText value="#{connectionInfo.clientID}"/>
</ice:column>
<ice:column>
<f:facet name="header">
<ice:outputText value="Host Name" />
</f:facet>
<ice:outputText value="#{connectionInfo.host}" />
</ice:column>
.....
</ice:dataTable>

i need to fix the width of the first column(prob it should warp when the colum reaches the said width) since it is too long and table is not readable.

Please let me know if anyone has come across such a situation and fixed the same.

Thanks in advance.

Mani
 
You save more money with a clothesline than dozens of light bulb purchases. Tiny ad:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic