1
I have the following autocomplete:
<p:autoComplete id="meuId"
label="#{messages['mesage']}:"
completeMethod="#{metodo}" var="bean"
itemValue="#{bean.id}" itemLabel="#{bean.descritivo}" dropdown="true"
converter="xx"
required="false">
How do I make sure that when hovering over the component an informative message is displayed ?
You can do both with Javascript like https://api.jquery.com/mouseover/ or with css http://www.w3schools.com/cssref/tryit.asp?filename=trycss_sel_hover
– Marconi