如何添加图片'(?)'在Header Menu旁边。同时我需要为它添加工具提示。这是我的HTML代码 -
<p:dialog id="ABC"
widgetVar="ABC"
header="HEader Menu "
dynamic="true" showEffect="clip"
closable="true"
onShow="checkEscape()"
height="150"
width="500"
resizable="true">
<ui:include src="/../../xyz.xhtml">
<ui:param name="" value="#/"/>
<ui:param name="" value="#"/>
</ui:include>
</p:dialog>
答案 0 :(得分:1)
您必须添加与
类似的自定义facet
<p:dialog>
<f:facet name="header">
<img src="..." title="Tooltip"/>
</f:facet>
</p:dialog>