Details
Description
TableRenderer puts always the hardcoded width 150px (Line: 659):
String width = "150px;";
if (isScrollable(uiComponent) &&
columnWitdths != null &&
columnWitdths.hasMoreTokens()) {
width = columnWitdths.nextToken();
}
String width = "150px;";
if (isScrollable(uiComponent) &&
columnWitdths != null &&
columnWitdths.hasMoreTokens()) {
width = columnWitdths.nextToken();
}
Issue Links
- blocks
-
ICE-4979 ArrayIndexOutOfBoundsException from TableRenderer.getWidthFromColumnWidthsArray
-
- Closed
-
Activity
- All
- Comments
- History
- Activity
- Remote Attachments
- Subversion
I don't see any problems. Use numer of columntWitdth's equal to number of columns.
Show
Krashan Brahmanjara
added a comment - I don't see any problems. Use numer of columntWitdth's equal to number of columns.
Re-instated original changes for this issue. The actual cause of regression was related to changes made for
ICE-4916.