Re: Browser Page Refresh Not Really Refreshing

2013-10-17 Thread dhongyt
I use a DataView and the data comes from the ListProvider which I created a Sortable ListProvider. I provided the Sortable ListProvider with a ListSubscription which I get through a hibernate database call. -- View this message in context:

Re: Browser Page Refresh Not Really Refreshing

2013-10-17 Thread Sven Meier
So are you passing ListSubscription to your provider's constructor, or are you loading a fresh list for #size() and #iterator() in each request? Sven On 10/15/2013 04:20 PM, dhongyt wrote: I use a DataView and the data comes from the ListProvider which I created a Sortable ListProvider. I

RE: Browser Page Refresh Not Really Refreshing

2013-10-17 Thread dhongyt
Thanks Paul for your guidance. After reading your link and other links on the web to understand stateful vs stateless, it has lead me to other questions: Currently my application is stateful. 1. Since I am authenticating my users, does it need to be stateful because of authentication? I have a

Re: Browser Page Refresh Not Really Refreshing

2013-10-17 Thread dhongyt
I am passing the list into the provider. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Browser-Page-Refresh-Not-Really-Refreshing-tp4661826p4661858.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Browser Page Refresh Not Really Refreshing

2013-10-16 Thread MartinoSuperman
Hi, Isn't it an idea to use Javascript for this? In JavaScript, it is also possible to refresh a page? Example code: http://www.quackit.com/javascript/javascript_refresh_page.cfm -- View this message in context:

Re: Browser Page Refresh Not Really Refreshing

2013-10-16 Thread dhongyt
I feel like there isn't a need for Javascript? Should a CRTL+R or an F5 already refresh the page and reload new data in Wicket? Is there a setting I'm forgetting to set? -- View this message in context:

RE: Browser Page Refresh Not Really Refreshing

2013-10-16 Thread Paul Bors
, Paul Bors -Original Message- From: dhongyt [mailto:davidhtr...@gmail.com] Sent: Wednesday, October 16, 2013 2:30 PM To: users@wicket.apache.org Subject: Re: Browser Page Refresh Not Really Refreshing I feel like there isn't a need for Javascript? Should a CRTL+R or an F5 already refresh

Re: Browser Page Refresh Not Really Refreshing

2013-10-15 Thread Sven Meier
Is this because I need to set my headers to not cache? No. How do you iterate over your subscriptions: AbstractRepeater, ListView, DataTable? Where do you get the subscriptions from? Sven On 10/15/2013 03:54 PM, dhongyt wrote: I have a wicket page that contains a dataview of

Re: Browser Page Refresh Not Really Refreshing

2013-10-15 Thread Andrew Hall
Sent from my HTC One SV - Reply message - From: dhongyt davidhtr...@gmail.com To: users@wicket.apache.org Subject: Browser Page Refresh Not Really Refreshing Date: Tue, Oct 15, 2013 8:55 AM I have a wicket page that contains a dataview of subscriptions. Any user that subscribes