留言板

how to call processAction() from JSF2.0(xhtml)

thumbnail
Ranga Rao Bobbili,修改在11 年前。

how to call processAction() from JSF2.0(xhtml)

Regular Member 帖子: 152 加入日期: 07-7-20 最近的帖子
Hi All,

How to call processAction() method of my controller from .xhtml page.

Basically i am not able to create portlet:actionURL inside xhtml page.

could you please provide me the solution to resolve the issue.

Thanks in advance...............

Thanks & Regards,
Ranga Rao B
Adaequare INC
Abhishek Galoda,修改在10 年前。

RE: how to call processAction() from JSF2.0(xhtml)

New Member 发布: 1 加入日期: 13-2-13 最近的帖子
<portlet:actionURL var="myActionURL" >
<portlet:param name="foo" value="1234" />
</portlet:actionURL>
<h:outputText var="actionURL=#{myActionURL}" />
thumbnail
Ranga Rao Bobbili,修改在10 年前。

RE: how to call processAction() from JSF2.0(xhtml)

Regular Member 帖子: 152 加入日期: 07-7-20 最近的帖子
Thanks Abhishek.