Set the scrollspeed to the Primefaces scrollbar

Is it possible to set scrollspeed from ScrollPanel for Primefaces? Scrollspeed of Scrollpanel in "native" mode works fine, but not in "deafult" mode.

I am using Primfaces 3.2-SNAPSHOT, JSF 2.1 and Tomcat 7.

+4
source share
1 answer

Not sure if in Primfaces 3.2, but in version 6.0 you can do this:

<p:scrollPanel id="scheduleDayViewScrollPanel" styleClass="static-width"> ... </p:scrollPanel> <script type="text/javascript"> $(document).ready(function () { $("#scheduleDayViewScrollPanel").jScrollPane({mouseWheelSpeed: 50}); }); </script> 

Primefaces 6.0 uses jScrollPane - v2.0.19 - 2013-11-16
http://jscrollpane.kelvinluck.com/

0
source

Source: https://habr.com/ru/post/1397047/


All Articles