-
22 Jan 2010 10:32 AM #1
Prevent Grid header showing ellipsis in Safari
Prevent Grid header showing ellipsis in Safari
Using Ext 3.0.
Grid headers in Safari appear truncated with the ellipsis (...) dots if the width of the column is not sufficient for the column text (this is also the case for the text contents of the rows themselves).
The same viewed in Firefox or IE is not truncated with elllipsis.
How can I prevent Safari from automatically truncating the text and have it display like it would in FF and IE? Is there a Safari CSS rule I can add somewhere?
Please see attached images.
Many thanks for any help.
FF.
-
11 Jun 2010 1:46 PM #2
-
11 Jun 2010 6:04 PM #3Sencha - Community Support Team
- Join Date
- Nov 2007
- Location
- Helsingborg, Sweden
- Posts
- 2,460
- Vote Rating
- 56
I think the rule you want to override is this one (set it to "clip" instead of "ellipsis" I think):
Here is more information about the property: https://developer.mozilla.org/en/CSS/text-overflowCode:.x-grid3-cell-inner, .x-grid3-hd-inner{ overflow:hidden; -o-text-overflow: ellipsis; text-overflow: ellipsis; padding:3px 3px 3px 5px; white-space: nowrap; }


Reply With Quote