admin管理员组文章数量:1349699
I was wondering how to make the scroll bar of the browser. go to top of page. I am developing a registration screen that is too big, and it contains some fields that are needed. It displayed an error message to the user if the required fields are not informed. The problem is that the scroll bar does not go up, and I want her to go to the top of the page. I'm using Primefaces and JQuery, but no this working.
I was wondering how to make the scroll bar of the browser. go to top of page. I am developing a registration screen that is too big, and it contains some fields that are needed. It displayed an error message to the user if the required fields are not informed. The problem is that the scroll bar does not go up, and I want her to go to the top of the page. I'm using Primefaces and JQuery, but no this working.
Share Improve this question edited Feb 15, 2013 at 12:43 Alfaville asked Feb 14, 2013 at 19:59 AlfavilleAlfaville 5537 silver badges16 bronze badges 1- correcting: I want the scrollbar climb to the top of the page, for to do so in jsf this a little tricky. Thank you ... =] – Alfaville Commented Feb 15, 2013 at 11:47
2 Answers
Reset to default 6<div id="msg">
Content page
onclick="javascript:window.location='#msg'"
I must say that your question looks like some discussion between two people, but I will try to give an answer. I suppose you have p:mandButton
for submit the form.
First add JavaScript function:
<script type="text/javascript">
function handleResponse(xhr, status, args) {
if (args.validationFailed) {
window.scrollTo(0, 0);
}
}
</script>
validationFailed
is callback parameter which is added implicitly by PrimeFaces in case hen validation fails.
Now, mandButton
:
<p:mandButton value="Submit" actionListener="#{myBean.submit}" onplete="handleResponse(xhr, status, args)"/>
This will call JavaScript function after AJAX request is pleted.
This is as much as I can suggest, you didn't provide much information. Adapt this code to your needs.
本文标签: javascriptJSF scroll bar at the top of the pageStack Overflow
版权声明:本文标题:javascript - JSF scroll bar at the top of the page - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743866498a2552678.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论