IceFaces 3.3.0 ace:带有图像的按钮。怎么办?

问题描述 投票:0回答:1
jsf icefaces icefaces-3
1个回答
1
投票

我遇到了类似的问题,但使用的是 ICEFaces 4。在我的情况下,图像将显示在按钮旁边。我想,我可以在 CSS 中设置按钮的样式。相反,我只是用标准 JSF h:commandButton 组件替换了 ace:pushButton 元素。 h:commandButton 有一个图像属性。这是一个例子:

<h:commandButton image="#{resource['images:searchIcon.png']}" 
  action="#{myBean.performSearch}">
    <f:param name="callback" value="sessionSearch"/>
</h:commandButton>

希望这可以帮助别人。

© www.soinside.com 2019 - 2024. All rights reserved.