奇妙な問題、私はさまざまな投稿を読みましたが、まだ実用的な答えを見つけていません。
テキストの代わりにアイコンを表示したい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>
最初はサイズが正しいのですが、画像の代わりに「SubmitQuery」が表示されます。第二に、私は同じ問題を抱えています。
「クエリの送信」をレンダリングするのはなぜですか?そして、value = ""を追加すると、アイコンは表示されず、空のボックスだけが表示されます。
ダン