/* This file is part of Ext JS 3.4 Copyright (c) 2011-2013 Sencha Inc Contact: http://www.sencha.com/contact GNU General Public License Usage This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE included in the packaging of this file. Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html. If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact. Build date: 2013-04-03 15:07:25 */ Ext.data.JsonP.Ext_QuickTips({"alternateClassNames":[],"aliases":{},"enum":null,"parentMixins":[],"tagname":"class","subclasses":[],"extends":null,"uses":[],"html":"
Files
Provides attractive and customizable tooltips for any element. The QuickTips\nsingleton is used to configure and manage tooltips globally for multiple elements\nin a generic manner. To create individual tooltips with maximum customizability,\nyou should consider either Ext.Tip or Ext.ToolTip.
\n\n\nQuicktips can be configured via tag attributes directly in markup, or by\nregistering quick tips programmatically via the register method.
\n\n\nThe singleton's instance of Ext.QuickTip is available via\ngetQuickTip, and supports all the methods, and all the all the\nconfiguration properties of Ext.QuickTip. These settings will apply to all\ntooltips shown by the singleton.
\n\n\nBelow is the summary of the configuration properties which can be used.\nFor detailed descriptions see the config options for the QuickTip class
\n\n\nQuickTips singleton configs (all are optional)
\n\n\nTarget element configs (optional unless otherwise noted)
\n\n\nHere is an example showing how some of these config options could be used:
\n\n\n// Init the singleton. Any tag-based quick tips will start working.\nExt.QuickTips.init();\n\n// Apply a set of config properties to the singleton\nExt.apply(Ext.QuickTips.getQuickTip(), {\n maxWidth: 200,\n minWidth: 100,\n showDelay: 50, // Show 50ms after entering target\n trackMouse: true\n});\n\n// Manually register a quick tip for a specific element\nExt.QuickTips.register({\n target: 'my-div',\n title: 'My Tooltip',\n text: 'This tooltip was added in code',\n width: 100,\n dismissDelay: 10000 // Hide after 10 seconds hover\n});\n
\n\n\nTo register a quick tip in markup, you simply add one or more of the valid QuickTip attributes prefixed with\nthe ext: namespace. The HTML element itself is automatically set as the quick tip target. Here is the summary\nof supported attributes (optional unless otherwise noted):
\n\n\nHere is an example of configuring an HTML element to display a tooltip from markup:
\n\n\n// Add a quick tip to an HTML button\n<input type=\"button\" value=\"OK\" ext:qtitle=\"OK Button\" ext:qwidth=\"100\"\n ext:qtip=\"This is a quick tip from markup!\"></input>\n
\n\nGets the single QuickTip instance used to show tips from all registered elements.
\nInitialize the global QuickTips instance and prepare any quick tips.
\nTrue to render the QuickTips container immediately to preload images. (Defaults to true)
\nReturns true if quick tips are enabled, else false.
\nConfigures a new quick tip instance and assigns it to a target element. See\nExt.QuickTip.register for details.
\nThe config object
\nRemoves any registered quick tip from the target element and destroys it.
\nThe element from which the quick tip is to be removed.
\n