Deactivate the scrollbars in handsontable -
in handsontable, possible show deactivated scrollbar?
i want show scrollbar when number of rows more viewport
, still wants deactivate visible scrollbar. there solution available this?
i got how deactivate visible scrollbars in handsontable.
there disable , enable methods defined in walkontable(3rd party used within handsontable). can used disable mouse clicks on scrollbar.
also need capture mousewheel event in control capture mousewheel event , prevent propagate.
$( '.htcore' ).on( 'mousewheel', function ( e ) { if (somecondition) { e.stoppropagation(); } } );
_handsontablecoreinstance.view.wt.wtscrollbars.vertical.dragdealer.enable();
Comments
Post a Comment