Java Wickets Dynamic DataView

2017-02-02 Thread ASHU_JAVA
Hello All, I'm trying to have a dynamic list view which will get updated dynamically on a button click. I've to implement the functionality like below:- So, the user will pass either a single name or upload a file containing

Re: Use Page from Pagestore even if PageParameters have changed

2017-02-02 Thread Ravi
Hi Sven, thank your for your quick reply. I'll try your LinkListener suggestion. -Ravi -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Use-Page-from-Pagestore-even-if-PageParameters-have-changed-tp4676971p4676975.html Sent from the Users forum mailing list archive

Re: Use Page from Pagestore even if PageParameters have changed

2017-02-02 Thread Sven Meier
Hi Ravi, you should pass a different URL to your payment partner: Put a Link on your page and use its URL. Or even better, let your page implement ILinkListener and use that URL: this.urlFor(ILinkListener.INTERFACE, new PageParameters()); Have fun Sven On 02.02.2017 11:32, Ravi

Use Page from Pagestore even if PageParameters have changed

2017-02-02 Thread Ravi
Hi, We have a Single-Page-Application (SPA) with five pages. On page three we redirect to a payment partner. Once the payment is done, it redirects back to our application with given URL. Because I want to continue on page three, the URL contains the pageId. Sounds good so far. But now the