hi
i am using to actions against one view-id in pages.xml i.e.
<page view-id="/comm/genmailtemplate.xhtml" action="#{EmailTemplateGeneraterAction.loadEmailTemplate}" />
<page view-id="/comm/genmailtemplate.xhtml" action="#{CustomerLoginAction.loadPrivileges('GenerateMailTempSMItem')}" />
problem is that only one action method is called. in my case second one CustomerLoginAction.loadPrivileges. i want both of them to be called.
i am returning nothing from my action methods.
thanks in adanvce for uor help.
What you want is:
<page view-id="whatever">
<action execute="#{action1}"/>
<action execute="#{action2}"/>
</page>