Details
-
Type: Bug
-
Status: Closed
-
Priority: Major
-
Resolution: Fixed
-
Affects Version/s: EE-2.0.0, EE-1.8.2.GA_P03
-
Fix Version/s: EE-2.0.0.GA_P01, EE-1.8.2.GA_P04
-
Component/s: Facelet Components
-
Labels:None
-
Environment:IE7
-
Workaround Exists:Yes
-
Workaround Description:See comment on August 30th, 2011.
Description
When editing a field in the richDataGrid and inputting a very long text string, the column length is as expected but the text is truncated. This can be reproduced using the component showcase and IE7.
The fix is as follows:
richDataGrid.xhtml line 62:
style="#
{browser.lessThanIe8 ? 'clear:both; float: left;' : '' }">
is replaced with:
style="#
{browser.lessThanIe8 ? 'clear:both;' : '' }">
The cause of the cutoff issue in IE7 was due to the float: left. This solution works for resolution 1024x768 or lower.