Is it possible to update any html fragment using Primefaces selectors - PFS? Consider this:
<h:outputText id="test" value="#{testBean.date}"/>
<span id="test2"><h:outputText value="#{testBean.date}"/></span>
<p:commandButton value="test" process="@none" update="@(#test)"/>
<p:commandButton value="test2" process="@none" update="@(#test2)"/>
Only first button is refreshing. It's trival example - my real need is to update some parts of datatable, without refreshing whole component.