0

我正在开发一个具有选择交互的地图应用程序。选择城市时尝试更新pickList bean。

<script>  
function onCitySelected(e) {  

   // get myPrimeFacesPickList

   // update myPrimeFacesPickList : move e.selectedCity source to target 
}  
</script>

有没有办法在我的 javascript 代码中获取和更新源和目标城市列表?

4

1 回答 1

0

也许使用 primeface RemoteCommand

它将向您的页面添加一个 js 函数,您可以在函数中使用该onCitySelected函数。然后调用该函数将触发您的支持 bean 中的一个方法,您可以在该方法中将所选城市添加到您的模型中(使用<f:setPropertyActionListener>),然后通过updateremoteCommand.

查看 primefaces 展示中 remoteCommand 的展示案例,并查阅remoteCommand 组件上的primefaces 文档

于 2013-04-19T13:08:18.233 回答