Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=7589782
By: sabbaath

Yes, but the method is independent of the display grid. I used CSS only to do
this.

There is one thing that you may need to work out, and that is the height of
the rows.  I used min-height below to define the minimum, I'll probably be 
adding
a height definition too in order to constrain the height, and at least force
the rows to be be same height (note: rows in this context is really referring
to cells).  This works fine,  but it's a little too "loose" to use as a global
style.  You'll probably have to override some of the defaults below using the
cascade for specific tables.

.TableContainer table.tester tr{
        float: left;
}
.TableContainer .tester tr th{
        display: block;
        min-height: 25px;
}
.TableContainer .tester tr td{
        display: block;
        min-height: 25px;
}

______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit: 
https://sourceforge.net/forum/unmonitor.php?forum_id=249318

------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
displaytag-user mailing list
displaytag-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/displaytag-user

Reply via email to