さて、あなたは...(「結合」。デ・小道具を使用して)豆とdataScrollerを結合して、次のページに行くための豆の機能を実行し、「目に見えないボタンをクリックし、」JavaScriptを使用することができます
XHTML:
<script type="text/javascript">
var t;
t=setTimeout("timedCount()", 1000);
function timedCount() {
document.getElementById('formName:button').click();
t=setTimeout("timedCount()", 10000);
}
</script>
(...)
<h:commandButton id="button" action="#{bean.scrollNext}" reRender="tableID"
style="visibility:hidden;"/>
(...)
豆:
HtmlDataScroller scroll; //(im not sure about the "HtmlDataScroller")
(...)
public void scrollNext() { scroll.next(); }
(...)
//Gets and sets to bind the scroller
get; set;...
いけないhtmlDataScrollerの新しいインスタンスを作成することを忘れたり、nullPointExceptionを得るでしょう。..