Documentation

dragscroll

enables autoscroll of component during drag-n-drop

boolean|string dragscroll;

Example

webix.ui({
        view:"datatable",
        ...
        dragscroll:true
});

See also

Details

As a string the parameter can take the following values:

  • "x" - only x-axis drag scroll
  • "y" - only y-axis drag scroll
  • "xy" - drag scroll in both directions
Back to top