如何在a4j:commandButton上显示图标。
我不想要按钮上的文字。
<a4j:commandButton id="editLink" styleClass="buttonImage"
action="#{bean.populateForm}"
oncomplete=" #{rich:component('EditPopup')}.show();"
render="EditPopup" execute="@form">
</a4j:commandButton>
以及styleClass
的代码 .buttonImage {background-image: url(../images/edit.gif)!important}
答案 0 :(得分:2)
可能的解决方案
image
- 属性为a4j:commandButton
并跳过css-part value=" "
并调整css样式为了适应css,样式,请尝试(图像宽度是图像的实际宽度)
.buttonImage {
background-image: url(../images/edit.gif)!important}
width: <imagewidth>px;
}
希望有帮助...