/* 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_dd_ScrollManager({"alternateClassNames":[],"aliases":{},"enum":null,"parentMixins":[],"tagname":"class","subclasses":[],"extends":null,"uses":[],"html":"
Files
Provides automatic scrolling of overflow regions in the page during drag operations.
\n\n\nThe ScrollManager configs will be used as the defaults for any scroll container registered with it,\nbut you can also override most of the configs per scroll container by adding a \nddScrollConfig object to the target element that contains these properties: hthresh,\nvthresh, increment and frequency. Example usage:\n
var el = Ext.get('scroll-ct');\nel.ddScrollConfig = {\n vthresh: 50,\n hthresh: -1,\n frequency: 100,\n increment: 200\n};\nExt.dd.ScrollManager.register(el);\n
\nNote: This class uses \"Point Mode\" and is untested in \"Intersect Mode\".\n\nThe animation duration in seconds -\nMUST BE less than Ext.dd.ScrollManager.frequency! (defaults to .4)
\nDefaults to: .4
True to animate the scroll (defaults to true)
\nDefaults to: true
The named drag drop group to which this container belongs (defaults to undefined).\nIf a ddGroup is specified, then container scrolling will only occur when a dragged object is in the same ddGroup.
\nThe frequency of scrolls in milliseconds (defaults to 500)
\nDefaults to: 500
The number of pixels from the right or left edge of a container the pointer needs to be to\ntrigger scrolling (defaults to 25)
\nDefaults to: 25
Registers new overflow element(s) to auto scroll
\nThe id of or the element to be scrolled or an array of either
\nUnregisters overflow element(s) so they are no longer scrolled
\nThe id of or the element to be removed or an array of either
\n