I think you should add a parameter to your activate method to respond to the
corresponding passivate method.

Christophe

2009/10/6 976 <amsc...@gmail.com>

>
> Thanks for fast response.
> ListClients:
>        public void onActivate(){
>                System.out.println("___ List activate");
>                if(client==null){
>                        System.out.println("getting all");
>                        clients = clientService.getClients();
>                }else{
>                        System.out.println("getting for search:
> "+client.getFirst());
>                        clients = clientService.getClientByCriteria(client);
>                }
>        }
>
>
>        Object onPassivate() {
>                System.out.println("___ List passivate");
>                return clients;
>        }
>
> SearchClient:
>        public Object onPassivate(){
>                System.out.println("_____ search passivate return
> "+(client!=null));
>                return client;
>        }
>
> If i remove the passivate methods - the result is exactly the same
>
> corTdenier christophe wrote:
> >
> > Can you post your activate and passivate methods ?
> >
> > 2009/10/6 976 <amsc...@gmail.com>
> >
> >
>
> --
> View this message in context:
> http://www.nabble.com/passing-values-between-pages-%28search--%3E-result%29-tp25765698p25769253.html
> Sent from the Tapestry - User mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
> For additional commands, e-mail: users-h...@tapestry.apache.org
>
>

Reply via email to