0

我想将一个按钮显示为图像。所以我把它写成:

<p:commandButton styleClass="edit_button_image" actionListener="#{userLeaveBean.editAppliedLeave}" title="Edit" process="@this"/>

以及用于获取按钮图像的 CSS:

.edit_button_image{
background: url(edit.JPG) no-repeat !important;

}

它很好地显示了图像,但还在图像上显示了一个文本“ui-button”。我怎样才能只得到图像?使用它显示很好,因为我想对整个部分执行一些操作,因为我选择并添加了 process="@this".any 解决方案?

4

1 回答 1

0

这不是更容易吗?Ap:commandLink提交 POST 就像p:commandButton.

<h:form>
    <p:commandLink ...>
        <h:graphicImage ... />
    </p:commandLink>
</h:form>
于 2013-05-30T07:14:45.013 回答