admin管理员组文章数量:1352128
In my application I call a Javascript event which calls a p:remoteCommand
named checkPageLayoutsAreSelected
as following :
$('selector').on('click', function (e) {
checkPageLayoutsAreSelected();
});
This is the p:remoteCommand
:
<p:remoteCommand name="checkPageLayoutsAreSelected" actionListener="#{beanFormDashboard.checkPageLayoutsAreSelected}" />
This p:remoteCommand
will call a method in the beanFormDashboard
managed bean which will return a Boolean value :
public Boolean checkPageLayoutsAreSelected(){
for(DashboardPage dp : dashboardPageList){
if(dp.getModel() == 0){
return false;
}
}
return true;
}
So I want to get the returned value by the checkPageLayoutsAreSelected()
from the managed bean in the Javascript code.
Something like this :
$('selector').on('click', function (e) {
var returnedValue = checkPageLayoutsAreSelected();
});
How can I do that?
In my application I call a Javascript event which calls a p:remoteCommand
named checkPageLayoutsAreSelected
as following :
$('selector').on('click', function (e) {
checkPageLayoutsAreSelected();
});
This is the p:remoteCommand
:
<p:remoteCommand name="checkPageLayoutsAreSelected" actionListener="#{beanFormDashboard.checkPageLayoutsAreSelected}" />
This p:remoteCommand
will call a method in the beanFormDashboard
managed bean which will return a Boolean value :
public Boolean checkPageLayoutsAreSelected(){
for(DashboardPage dp : dashboardPageList){
if(dp.getModel() == 0){
return false;
}
}
return true;
}
So I want to get the returned value by the checkPageLayoutsAreSelected()
from the managed bean in the Javascript code.
Something like this :
$('selector').on('click', function (e) {
var returnedValue = checkPageLayoutsAreSelected();
});
How can I do that?
Share Improve this question edited Feb 17, 2017 at 15:39 soundslikeodd 1,0773 gold badges20 silver badges33 bronze badges asked Feb 17, 2017 at 15:26 Renaud is Not Bill GatesRenaud is Not Bill Gates 2,12438 gold badges115 silver badges212 bronze badges 02 Answers
Reset to default 7 +200checkPageLayoutsAreSelected
doesn't return a value or even a promise but you can Ajaxicaly return value.
<p:remoteCommand name="checkPageLayoutsAreSelected"
action="#{beanFormDashboard.checkPageLayoutsAreSelected()}"
onplete="getLayoutAreSelectedResult(xhr, status, args);"
/>
And in the method checkPageLayoutsAreSelected()
you use RequestContext provided by PF to send result back to client:
public void checkPageLayoutsAreSelected() {
Boolean result=true;
for(DashboardPage dp : dashboardPageList){
if(dp.getModel() == 0){
result= false;
}
}
RequestContext reqCtx = RequestContext.getCurrentInstance();
reqCtx.addCallbackParam("returnedValue", result);
}
And in the Javascript callback function getLayoutAreSelectedResult(xhr, status, args)
you will have the returned value:
$('selector').on('click', function (e) {
checkPageLayoutsAreSelected();
window.getLayoutAreSelectedResult= function(xhr, status, args) {
var returnedValue = args.returnedValue;
console.log(returnedValue);
}
});
The other answer works and gives u full xhr access, but you could theoretically do that at any point in time, throw something into the requestScope and re-render then pull it out from EL. Personally I prefer to have the elements visible on the page as we may use them later for any kind of info but this is another way to do it. Set a hidden element with reference to your bean data, and wrap it a ponent that can be targeted for re-rendering.
Then in your checkPageLayoursAreSelected, set the value of that object on the bean, and have the remoteCommand render/update the ponent wrapper of your element, and an after effect then just use basic JS or Jquery to get the value from the dom.
Working example:
view.xhtml
<button type="button" id="buttonClicker" class="buttonClicker" >Click Me</button>
<p:remoteCommand name="checkPageLayoutsAreSelected" actionListener="#{testBean.checkPageLayoutsAreSelected}" update="pageLayoutSelected" onplete="showVal()"/>
<h:panelGroup id="pageLayoutSelected">
<h:inputHidden value="#{testBean.pageLayoutSelected}" id="checkPageLayoutValueId" />
</h:panelGroup>
<script>
$('.buttonClicker').on('click', function (e) {
checkPageLayoutsAreSelected();
});
function showVal() {
alert($("[id$='checkPageLayoutValueId']").val());
};
</script>
TestBean.java
private Boolean pageLayoutSelected;
public Boolean checkPageLayoutsAreSelected(ActionEvent event) {
if (pageLayoutSelected == null || pageLayoutSelected == Boolean.FALSE) {
pageLayoutSelected = Boolean.TRUE;
} else {
pageLayoutSelected = Boolean.FALSE;
}
return pageLayoutSelected;
}
getters/setters
I've added an alert to show you that the data =has been modified.
Important, you need to likely do it in the onplete phase - as it's absolutely sure that the dom rendering has beenc ompleted, onsuccess the DOM may still have the older value if the JS is run quick enough.
Hope this helps.
本文标签: jsfGet the returned value from managed bean in javascriptStack Overflow
版权声明:本文标题:jsf - Get the returned value from managed bean in javascript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743905894a2559515.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论