Calling a page with parameters from other page

2006-09-26 Thread Daniel Castro
Guys, help me again. I have 2 pages. The problem is to call the method activateExternalPage on page B. This is what i have done so far, but no sucess. The page B loads without the values passed on the ExternalCallback. What is missing? - Page A @InjectPage(Edit) public

Re: Calling a page with parameters from other page

2006-09-26 Thread DJ Gredler
If I'm understanding the question correctly, you probably want to do: @InjectObject( engine-service:external ) public abstract IEngineService getExternalService(); ExternalServiceParameter param = new ExternalServiceParameter( pageName, new Object[] { ... } ); ILink link =

Re: Calling a page with parameters from other page

2006-09-26 Thread Daniel Castro
The idea is to load a page to edit the informations associated with a product. So I have the search page with a link to edit each row of the result on an edit page. If i click this link I will load a page form with the actual informations filling the form. The point is, how to do that? The DTO

Re: Calling a page with parameters from other page

2006-09-26 Thread Daniel Castro
I found a solution, dont know if there is other way to do it but I get the page, set the fields and throw the page inside a PageRedirectException On 9/26/06, Daniel Castro [EMAIL PROTECTED] wrote: The idea is to load a page to edit the informations associated with a product. So I have the