Ajax Update All components with JSF -



Ajax Update All components with JSF -

is there way update components or have manually select each id? have ajax html5 detection script , dont want have update every component via id.

thanks

just utilize id of mutual parent component.

class="lang-xml prettyprint-override"><h:panelgroup id="someparent"> <h:somecomponenttoupdate ... /> ... <h:somecomponenttoupdate ... /> ... <h:somecomponenttoupdate ... /> ... </h:panelgroup> ... <f:ajax render="someparent" />

or utilize @all refresh entire page.

class="lang-xml prettyprint-override"><f:ajax render="@all" />

ajax jsf

Comments

Popular posts from this blog

c# - Move local mssql database to webhosted MYSQL -

string - what is the difference between "some" == "some\0" and strcmp("some","some\0") in c++? -

java - How to pass parameters between Request-Scoped Controllers? -