Manual:Widgets:QuickTips (Legacy)

This version of our Learning Center is unmaintained.
This article may be out-of-date or contain incorrect information.
Please visit the new Sencha Learning Center for up-to-date material.

Go to the new Sencha Learning Center

From Sencha - Learn

Jump to: navigation, search

Ext Manual > Widgets >

Contents

Ext.QuickTips

Examples

Ext.QuickTips.init();
var tb = new Ext.Toolbar('toolbar');
tb.add({new Ext.Toolbar.MenuButton({
   tooltip: {
      text:'This is a QuickTip with autoHide set to false and a title',
      title:'Tip Title',
      autoHide:false
   }
}) });

Miscellany

How do I add those fancy quicktips on title attribute with Ext JS 1.x?

Ext.QuickTips.interceptTitles = true;
Ext.QuickTips.init();

How do I add those fancy quicktips on title attribute with Ext JS 2.x?

Ext.QuickTips.init();
var qtip = Ext.QuickTips.getQuickTip();
qtip.interceptTitles = true;

Links

This page was last modified on 15 November 2007, at 13:23. This page has been accessed 31,435 times.