I have an Ext.Grid.Panel with 'gridviewdragdrop' plugin on. I was able to turn on auto-scrolling when using the 'containerScroll' property.
viewConfig: {
plugins: {
ptype: 'gridviewdragdrop',
containerScroll: true
}
}
However, the area in which ScrollManager fires an event to scroll is too small (it's essentially only the length of the arrow blocks on the vertical scrollbar). Is there a way to increase this area? Could I just do something like firing the ScrollManager event whenever my pointer crosses the top or bottom boundaries of my grid when dragging?