-
Ext User
Bug in Ext.quickTips.show() when setting ext:width
Bug in Ext.quickTips.show() when setting ext:width
There is a bug since beta2 in Ext.QuickTips.show().
If you specify ext:width in an element the width of the quicltip will be calculated as follows:
var p = getPad(), w = ce.width;
el.setWidth(w + p);
(quicktips.js, line 121 to 134)
However w ist as STRING (because its a dom attribite)!
If you define ext:width="200" the quicktip width will calculate to 20012 (in my case).
My workaround ist ti change line 134 in:
el.setWidth(Number(w) + p);
-
Sencha User
Jack Slocum
Ext JS Founder
Original author of Ext JS 1, 2 & 3.
Twitter: @jackslocum
jack@extjs.com
Sencha is used by over two million developers. Join the community, wherever you’d like that community to be
or Join Us