留言板

Vaadin Portlet

thumbnail
Satish Anupoju,修改在12 年前。

Vaadin Portlet

Junior Member 帖子: 79 加入日期: 11-2-20 最近的帖子
Hi Friends


Can anybody guide me how to call processAction() from VAADIN form.

How can we get the Vaadin form values into processAction()

Regards
Satish Babu
thumbnail
David H Nebinger,修改在12 年前。

RE: Vaadin Portlet

Liferay Legend 帖子: 14918 加入日期: 06-9-2 最近的帖子
You don't.

You don't mix the Vaadin way w/ the standard portlet API.

The underlying Vaadin implementation takes care of all of the plumbing. When your button's click listener is called, all of the data from the form has already been marshalled back to the Vaadin components, so your listener can just do what it needs to do with that data (i.e. validate it, store it, etc.).