| Package: | CQ.Ext.dd |
| Class: | ScrollManager |
| Extends: | Object |
| Clientlib: | cq.widgets |
Provides automatic scrolling of overflow regions in the page during drag operations.
The ScrollManager configs will be used as the defaults for any scroll container registered with it, but you can also override most of the configs per scroll container by adding a ddScrollConfig object to the target element that contains these properties: hthresh, vthresh, increment and frequency. Example usage:
var el = CQ.Ext.get('scroll-ct');
el.ddScrollConfig = {
vthresh: 50,
hthresh: -1,
frequency: 100,
increment: 200
};
CQ.Ext.dd.ScrollManager.register(el);
Note: This class uses "Point Mode" and is untested in "Intersect Mode".| Property | Defined By | |
|---|---|---|
|
animDuration : Number
The animation duration in seconds -
MUST BE less than CQ.Ext.dd.ScrollManager.frequency! (defaults to .4)
|
ScrollManager | |
|
animate : Boolean
True to animate the scroll (defaults to true)
|
ScrollManager | |
|
ddGroup : String The named drag drop group to which this container belongs (defaults to undefined).
If a ddGroup is specified, then co...
The named drag drop group to which this container belongs (defaults to undefined).
If a ddGroup is specified, then container scrolling will only occur when a dragged object is in the same ddGroup.
|
ScrollManager | |
|
frequency : Number
The frequency of scrolls in milliseconds (defaults to 500)
|
ScrollManager | |
|
hthresh : Number The number of pixels from the right or left edge of a container the pointer needs to be to
trigger scrolling (default...
The number of pixels from the right or left edge of a container the pointer needs to be to
trigger scrolling (defaults to 25)
|
ScrollManager | |
|
increment : Number
The number of pixels to scroll in each scroll increment (defaults to 100)
|
ScrollManager | |
|
vthresh : Number The number of pixels from the top or bottom edge of a container the pointer needs to be to
trigger scrolling (default...
The number of pixels from the top or bottom edge of a container the pointer needs to be to
trigger scrolling (defaults to 25)
|
ScrollManager | |