奇怪的问题,我已经阅读了各种帖子,但还没有找到有效的答案。
当我有 ah:commandButton,我想在其中显示一个图标而不是文本时,我已经尝试过了。
<h:commandButton value=" " image="UpArrow.png" style="position: absolute; left: 36px; top: 17px; width: 18px; height: 18px; cursor: pointer;" title="Pan up" actionListener="#{SarWindsImagesBean.panUp('testImage.jpg')}">
<f:ajax render="imagePan2"/>
</h:commandButton>
<h:commandButton image="UpArrow.png" style="position: absolute; left: 36px; top: 17px; width: 18px; height: 18px; cursor: pointer;" title="Pan up" actionListener="#{SarWindsImagesBean.panUp('testImage.jpg')}">
<f:ajax render="imagePan2"/>
</h:commandButton>
首先,大小是正确的,但我得到的不是图像,而是“提交查询”。在第二个中,我遇到了同样的问题。
为什么会呈现“提交查询”?如果我添加 value=" ",它不会显示图标,只是一个空框。
担