Re: Stateful panel.

2015-05-26 Thread Vignesh Palanisamy
Thanks François Meillet, But my detail and list are not pages those are panels. And i don't want to refresh the whole page, I just want to replace the panel with AjaxRequestTarget. And i had attached a sample quickstart project in my previous mail. On Tue, May 26, 2015 at 4:43 PM,

Re: Stateful panel.

2015-05-26 Thread Ernesto Reinaldo Barreiro
Hi, if you use panel replacement... just keep a copy of search panel around... and once user finish viewing details use that same panel again: that should the all the state is search panel is well designed and self contained. On Wed, May 27, 2015 at 2:41 AM, Vignesh Palanisamy

Re: Stateful panel.

2015-05-26 Thread Francois Meillet
One way of doing this : 1) go to your detail page add( new LinkVoid(detail) { @Override public void onClick() { setResponsePage(new YourPage(getPage().getPageReference())); } }); public YourPage(PageReference pageReference) { this.pageReference = pageReference; } 2)