Tuesday, April 28, 2015

Set page dynamically in tapestry using IPage

Below is sample on how to set page dynamically in tapestry 4.1 using ipage

public IPage doCallMethodSave(IRequestCycle cycle) {
IPage ipage = null;
ipage = cycle.getPage("pageName");
return ipage;
}

No comments: