我遇到了类似的问题,但使用的是 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>
希望这可以帮助别人。