本文介绍了如何使p:graphicImage可点击并调用Bean操作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用<p:graphicImage>
,如下所示:
I am using <p:graphicImage>
like below:
<div id="mapp">
<h3>Country Map</h3>
<p:graphicImage id="city"
value="#{countryPages_Setup.countryMap}"
width="250"
height="190">
</p:graphicImage>
</div>
但这不是可点击的图像.如何使该图像可单击,以便用户单击它时,可以调用所需的托管bean操作.
But this is not a clickable image. How can I make this image clickable so when user click on it, I can invoke the managed bean action that I want.
推荐答案
将图像包装在h:commandLink
/h:link
中:
<h:commandLink action="...">
<p:graphicImage id="city"
value="#{countryPages_Setup.countryMap}"
width="250"
height="190">
</p:graphicImage>
</h:commandLink>
这篇关于如何使p:graphicImage可点击并调用Bean操作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!