I have a <p:column>
with a filter.
I would like to show it with a watermark.
This is what I have tried:
<p:column id="carType" filterBy="#{car.carType}" >
<h:outputText value="#{car.carType}" />
<p:watermark forElement="carType"
value="Car Type"/>
</p:column>
However, that didn't show up. How can I achieve this?