Details
-
Type: Bug
-
Status: Closed
-
Priority: Major
-
Resolution: Fixed
-
Affects Version/s: 1.6DR#4
-
Component/s: ICE-Components
-
Labels:None
-
Environment:seam
Description
Since seam-gen is automatically generated from database tables, the number of columns is not know ahead of time. It is currently VERY difficult to line up the header & body columns of an ice:dataTable without knowing ahead of time how many columns there are. Could there not be a default settings such that the following happened( for instance):-
if (table.isScrollable){
set scrollercolumn.header=scrollercolumn.body=10%;
defaultwidth= 90/(numcolumns-1);
}
render the ice:dataTable with the default width and let it be overwritten (if desired) using the width="
property as it is currrently done.
if (table.isScrollable){
set scrollercolumn.header=scrollercolumn.body=10%;
defaultwidth= 90/(numcolumns-1);
}
render the ice:dataTable with the default width and let it be overwritten (if desired) using the width="
property as it is currrently done.
Issue Links
- blocks
-
ICE-1810 Support Integration with JBoss Seam
- Closed
Activity
- All
- Comments
- History
- Activity
- Remote Attachments
- Subversion
Default width (150px) added if table is scrollable and columnsWidth is null. The columnsWidth overrides default values. -revisoin13881