This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
hi, my requirement is I have to display some data in dataTable and I need to put fixed height for the columns.if the data in that column exceeds then the data should hide and onmouseover one tooltip should come showing the exceeded data.
but the jsf data table is not hiding the data at all.I have given width and height for that column using css but it is showing the data completely.
please tell me how can I do this one.
Nitin Deshmukh
Greenhorn
Joined: Nov 28, 2007
Posts: 9
posted
0
try using overflow: hidden; in styleClass.
Nitin
Bhaskar GR
Greenhorn
Joined: Jun 13, 2008
Posts: 28
posted
0
I suggest you use CSS like this:
table#[id of the table].tbody{ overflow: scroll; height:[specified height]; }