jdev11.1.1.6を使用しています
ページの上部にスクロールする必要がある場合..これは完全に機能します..
var scrollTop = function (event) {
$('.mainWrapper,body,html').animate( {
scrollTop : 0
}, 'slow');
}
pqr.jsff から次のように呼び出します
<af:commandLink text="click test" clientComponent="true" id="col7">
<af:clientListener method="scrollTop " type="click"/>
</af:commandLink>
以下のように機能を変更しましたが、うまくいきません
var scrollToSpecificPosition= function (event) {
$('.mainWrapper,body,html').animate( {
scrollTop : $("#gl1").offset().top
}, 'slow');
}
gl1 は、ポイントしたいIDです
<af:goLink id="gl1" text="test"></af:goLink>
pqr.jsff から次のように呼び出します
<af:commandLink text="click test" clientComponent="true" id="col7">
<af:clientListener method="scrollToSpecificPosition" type="click"/>
</af:commandLink>