I am using Primefaces 3.5 and I need to use the sticky tag. I got the code from the showcase. So here is my code:
<p:toolbar id="myToolbar">
<p:toolbarGroup align="left">
<p:commandButton type="button" value="Some Button" />
</p:toolbarGroup>
</p:toolbar>
<p:sticky target="myToolbar" />
I get the error:
/index.xhtml @26,36 Tag Library supports namespace: http://primefaces.org/ui, but no tag was defined for name: sticky
If I remove the sticky part everything works fine. What could this error be?