2012-02-17 93 views
4

设置Primeroll滚动面板滚动速度有没有可能性? “原生”模式下Scrollpanel的滚动速度可以,但不能处于“deafult”模式。设置Primeroll滚动面板的滚动速度

我使用Primefaces 3.2快照JSF 2.1和Tomcat 7

回答

0

不确定Primefaces 3.2,但在6.0你可以这样做:

<p:scrollPanel id="scheduleDayViewScrollPanel" styleClass="static-width"> 
... 
</p:scrollPanel> 

<script type="text/javascript"> 
    $(document).ready(function() { 
     $("#scheduleDayViewScrollPanel").jScrollPane({mouseWheelSpeed: 50}); 
    }); 
</script> 

Primefaces 6.0使用JScrollPane中 - V2。 0.19 - 2013-11-16
http://jscrollpane.kelvinluck.com/