/* 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_LoadMask({"alternateClassNames":[],"aliases":{},"enum":null,"parentMixins":[],"tagname":"class","subclasses":[],"extends":null,"uses":[],"html":"
Files
A simple utility class for generically masking elements while loading data. If the store\nconfig option is specified, the masking will be automatically synchronized with the store's loading\nprocess and the mask element will be cached for reuse. For all other elements, this mask will replace the\nelement's Updater load indicator and will be destroyed after the initial load.
\n\nExample usage:
\n\n\n// Basic mask:\nvar myMask = new Ext.LoadMask(Ext.getBody(), {msg:\"Please wait...\"});\nmyMask.show();\n
\n\nThe text to display in a centered loading message box (defaults to 'Loading...')
\nDefaults to: 'Loading...'
The CSS class to apply to the loading message element (defaults to \"x-mask-loading\")
\nDefaults to: 'x-mask-loading'
True to create a single-use mask that is automatically destroyed after loading (useful for page loads),\nFalse to persist the mask element reference for multiple uses (e.g., for paged data widgets). Defaults to false.
\nRead-only. True if the mask is currently disabled so that it will not be displayed (defaults to false)
\nDefaults to: false
Create a new LoadMask
\nThe element or DOM node, or its id
\nThe config object
\nDisables the mask to prevent it from being displayed
\nEnables the mask so that it can be displayed
\nShow this LoadMask over the configured Element.
\n