Incorrect session handling in a GAE environment

2012-10-03 Thread Ian Marshall
I get what appears to me to be incorrect session handling when the Apache Wicket session size of my application approaches my self-imposed limit of 900kB (which itself is near the Google App Engine (GAE) limit of 1MB). I see flash messages set during the composition of a web response using

Reseting a textField of an upload form

2012-10-03 Thread antechrestos
Hello, I have an upload form with a TextField and a FileUploadField. When the user fill the form and press an AjaxButton, it refreshes the RefreshingView listing the files already uploaded. What I would like to do is clear the textfield when the form is submitted. I already tried to add the text

BackButton support Browser Compatibility issue

2012-10-03 Thread vidhi
Hello everyone, I am a newbie evaluating wicket framework for development and I have encountered a problem while trying to implement the Browser BackButton support feature of wicket. After reading the documentation and forum discussions on the same topic I tried to put my components and

RE: Configurable Resource's url (use CDN or not)

2012-10-03 Thread David Loidolt
Dear All, I'm currently experiencing some problems using SimpleCDN in Wicket 1.5.4 in combination with mountResource for image/texttemplate/css resources. When used, the according resources are then no longer resolved via CDN but served from the origin host as relative paths. Works: -- Inside

Re: Add bottom row to editable tree table

2012-10-03 Thread Martin Grigorov
Hi, I think you just need to update its model with an additional entry/node and repaint it. On Wed, Oct 3, 2012 at 9:36 PM, grazia grazia.russolass...@gmail.com wrote: Would it be possible to modify a tree table by adding the Add and Delete functionality ? -- View this message in context:

RE: Appending to CSS url to prevent caching.

2012-10-03 Thread Jeffrey Schneller
You could just add your own cache buster. You could do something like: String cachebuster = something that will always be unique - maybe time stamp; response.renderCSSReference(style/theme.css? + cachebuster); not sure if this will bust the cache because the file is really the same. -or-

Re: Reseting a textField of an upload form

2012-10-03 Thread Andrea Del Bene
Hi, can you show the code you use to clear the model object of the textfield? Hello, I have an upload form with a TextField and a FileUploadField. When the user fill the form and press an AjaxButton, it refreshes the RefreshingView listing the files already uploaded. What I would like to do is

RE: Reseting a textField of an upload form

2012-10-03 Thread Paul Bors
I would also suggest getting familiar with Wicket's home page and making use of the Live example from under the Learn left navigation section: http://wicket.apache.org/learn/examples/ follow the examples Wicket has at: http://www.wicket-library.com/wicket-examples/index.html Start from the