I need your help in order to refresh a div id="mytable"
in my html once the function is called from a method. Currently, I am loading the full page once it is called using the below lines.
In my java method, I am using the below line to call a javascript method:
RequestContext.getCurrentInstance().execute("autoRefresh()");
The html code :
<script type="text/javascript">
function autoRefresh() {
window.location.reload();
}
</script>
<div id='mytable'>
<h1 id='My Table'>
<table></table>
</h1>
</div>
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…