is it possible to do something like
<div class="refresh_#{bean.someId}">
<h:panelGroup>
...
</h:panelGroup>
</div>
and then somewhere
<p:commandButton update="@(.refreshAll_#{bean.someId})" />
I am thinking about how PFS works here.
I need this because I have some components which I want to update, but cannot set the id ( does not work, so I would just give them a class and update them later.
Will this work or is this a bad practise?