SMART datagrid v.1 > Classes > DisplayOptions

[ grids ver.1.3.2]   Back  Forward

DataLudi.DisplayOptions.bubbleWheelEvents  property

If specify as false, even if the vertical scroll state reaches both ends, it will not bubbling wheel event. 

Defaults to true.

Getter
function bubbleWheelEvents(): Boolean
Setter
function setBubbleWheelEvents(value: Boolean)
Code -1
    grid.setOptions({
        display: {
            bubbleWheelEvents: false
        }
    });
Code -2
    grid.setDisplayOptions({
        bubbleWheelEvents: false
    });
Code -3
    grid.displayOptions().setBubbleWheelEvents(false);
See Also
wheelDelta
horzWheelDelta
Examples
Scroll Bar