-
7 Apr 2013 11:42 PM #1
[4.2.0 GA] Tooltips are narrow in Chrome and IE10
[4.2.0 GA] Tooltips are narrow in Chrome and IE10
REQUIRED INFORMATION
Ext version tested:- Ext 4.2.0 GA
- IE10 - FAIL
- Chrome - FAIL
- IE9 - PASS
- FireFox - PASS
- <!DOCTYPE html>
- A tooltip are too narrow in IE10 and Chrome.
- Here is already quite a big discussion about this problem.
- Open the test case in Chrome or IE10
- Make the field invalid (focus and blur)
- Move mouse over the field
- The tooltip looks good
- The tooltip looks are too narrow
Code:<!DOCTYPE html> <html> <head> <title>Tooltips are narrow in Chrome and IE10</title> <link rel="stylesheet" href="../resources/css/ext-all.css" /> <script src="../ext-all-debug.js"></script> <script> Ext.onReady(function () { Ext.create("Ext.form.field.Text", { renderTo: Ext.getBody(), allowBlank: false }) }); </script> </head> <body> </body> </html>
HELPFUL INFORMATION
Screenshot:- How it looks in Chrome.
-
7 Apr 2013 11:55 PM #2
This is a known issue, we have a ticket open for this.
Evan Trimboli
Sencha Developer
Twitter - @evantrimboli
Don't be afraid of the source code!
-
8 Apr 2013 12:01 AM #3
Thank you, Evan. It is excellent to know you are aware of this issue. Is there a thread for fix to monitor or, at least, a bug id?
Do you have any "official" temporary fix for this?
Is the fix suggested by @firefoxSafari OK for now?
http://www.sencha.com/forum/showthre...106#post955038
Fix
Code:delete Ext.tip.Tip.prototype.minWidth; //for Chrome if (Ext.isIE10) { Ext.supports.Direct2DBug = true; }
-
8 Apr 2013 2:39 AM #4
Here is the bug report:
http://www.sencha.com/forum/showthre...ts-off-content
Also here:
http://www.sencha.com/forum/showthre...ze-of-the-text
This issue duplicates another issue.


Reply With Quote