Re: # in URL

2014-05-17 Thread Martin Grigorov
:) the hash tag is *not* send with the request urlfragment uses javascript to read it and send it with ajax On May 17, 2014 1:51 AM, Maxim Solodovnik solomax...@gmail.com wrote: It is definitely not, We are using https://github.com/wicketstuff/core/wiki/UrlFragment to work with URL hashes

Re: DiskDataStore errors in production

2014-05-17 Thread Francois Meillet
You need to increase the maximum number of file handles allowed by your system. On linux/OSX find open files limit per process: ulimit -n count all opened files by all process: lsof | wc -l list of processes and the number of file handles they have open: lsof | cut -d -f 1 | uniq -c | sort -nr

Re: Wicket atmosphere

2014-05-17 Thread Olivier Dutrieux
Hello Emond, Very thanks to the update but I found a problem when I use long polling for the transport : When the EventBus loop to the list of AtmosphereResource (on post method) and if the update is too long of each AtmosphereResource, the list of AtmosphereResource is update and reorder

Re: AjaxTabbedPanel and validation for all tabs

2014-05-17 Thread mscoon
The reason I want to avoid client tabs is speed. The form has several components that are slow to render (drop downs filled with REST service calls). I ended up implementing this as follows: - An AjaxTabbedPanel with links that will submit the form currently shown (I look for the first child of

Re: problem with AbstractEntityModel from Igor Vaynberg

2014-05-17 Thread mscoon
I don't understand what these lines are doing. Are you reloading whatever is already stored in your modelObject.kunde and setting it again to your model object? Why? On Thu, May 8, 2014 at 7:50 AM, Piratenvisier hansheinrichbr...@yahoo.dewrote: If I include the folowing lines :