-Ext.Tip = Ext.extend(Ext.Panel, {
- <div id="cfg-Ext.Tip-closable"></div>/**
- * @cfg {Boolean} closable True to render a close tool button into the tooltip header (defaults to false).
- */
- <div id="cfg-Ext.Tip-width"></div>/**
- * @cfg {Number} width
- * Width in pixels of the tip (defaults to auto). Width will be ignored if it exceeds the bounds of
- * {@link #minWidth} or {@link #maxWidth}. The maximum supported value is 500.
- */
- <div id="cfg-Ext.Tip-minWidth"></div>/**
- * @cfg {Number} minWidth The minimum width of the tip in pixels (defaults to 40).
- */
- minWidth : 40,
- <div id="cfg-Ext.Tip-maxWidth"></div>/**
- * @cfg {Number} maxWidth The maximum width of the tip in pixels (defaults to 300). The maximum supported value is 500.
- */
- maxWidth : 300,
- <div id="cfg-Ext.Tip-shadow"></div>/**
- * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop"
- * for bottom-right shadow (defaults to "sides").
- */
- shadow : "sides",
- <div id="cfg-Ext.Tip-defaultAlign"></div>/**
- * @cfg {String} defaultAlign <b>Experimental</b>. The default {@link Ext.Element#alignTo} anchor position value
- * for this tip relative to its element of origin (defaults to "tl-bl?").
- */
- defaultAlign : "tl-bl?",
- autoRender: true,
- quickShowInterval : 250,
-
- // private panel overrides
- frame:true,
- hidden:true,
- baseCls: 'x-tip',
- floating:{shadow:true,shim:true,useDisplay:true,constrain:false},
- autoHeight:true,