是否有可能设置Primefaces的ScrollPanel的scrollspeed? ScrollPanel在“原生”模式下的滚动速度是可以的,但不是“deafult”模式。
我正在使用Primefaces 3.2-SNAPSHOT,JSF 2.1和Tomcat 7。
答案 0 :(得分: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/