我正在使用我使用过图像的commandLink。 该图像被禁用,具体取决于来自辅助bean的一个布尔值。我的代码如下:
<p:commandLink id="addReceiver" actionListener="#{customerReviewLazyDataModel.addReciver}" oncomplete="setFocusToOrganizationName('reciverNameInput')" update="documentWiz" ajax="true" disabled="#{customerReviewLazyDataModel.isEditDisabled}">
<p:graphicImage value="/app-resources/themes/yob/images/toevoegen.png" style="float: right; margin-right: 7px;"></p:graphicImage>
</p:commandLink>
在Firefox和IE上,此链接在禁用时显示为灰色。但是在Chrome上,它正在显示。只是指针被改变了。我的问题是,为什么Chrome上的链接不是灰色的?是图像不透明的问题吗?