Submitting a DateTextField value in a different timezone that the browser

2013-08-02 Thread seba.wag...@gmail.com
Hi, According to: http://ci.apache.org/projects/wicket/apidocs/6.0.x/org/apache/wicket/datetime/markup/html/form/DateTextField.html *This component tries to apply the time zone difference between the client and server. See the date converter

Re: Generating spreadsheet to send to Client fails in 1.6

2013-08-02 Thread BrianWilliams
It simply redisplays the page and gives me the option to open or save the spreadsheet.  When I choose open, it's in another window so what I write directly to the response looks like an attachment to the browser. From: Sven Meier [via Apache Wicket] To: Brian

Re: Getting Lazy Loaded Panel

2013-08-02 Thread dhongyt
Is this a smart way of doing this? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Getting-Lazy-Loaded-Panel-tp4660637p4660658.html Sent from the Users forum mailing list archive at Nabble.com. - To

Re: Table with a lot of ajax links

2013-08-02 Thread Ernesto Reinaldo Barreiro
Let me see if I can spend a couple of hours on it during the night. I will hang it somewhere in github.. On Fri, Aug 2, 2013 at 5:42 PM, Brian Welnack wrote: > I have some work coming up that could benefit from such an example as > well... > > > On Fri, Aug 2, 2013 at 12:56 AM, Ernesto Reinaldo

Re: Table with a lot of ajax links

2013-08-02 Thread Brian Welnack
I have some work coming up that could benefit from such an example as well... On Fri, Aug 2, 2013 at 12:56 AM, Ernesto Reinaldo Barreiro < reier...@gmail.com> wrote: > Hi, > > Do you want me to build an example? That might be easier that explaining > all details... You can then adapt the example

Re: Wicket consumig ajax request of other plugin

2013-08-02 Thread Martin Grigorov
Great! On Fri, Aug 2, 2013 at 1:14 PM, armandoxxx wrote: > Fixed it > Next time please share your solution so other users can benefit too. Thanks! > > > > > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/Wicket-consumig-ajax-request-of-other-plugin-tp4660649

Re: Wicket consumig ajax request of other plugin

2013-08-02 Thread armandoxxx
Fixed it -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-consumig-ajax-request-of-other-plugin-tp4660649p4660652.html Sent from the Users forum mailing list archive at Nabble.com. - To uns

Re: Wicket consumig ajax request of other plugin

2013-08-02 Thread armandoxxx
and !? sorry cant understand what you're saying ... my wicket app filter is on / and my urls I want to ignore are on /service .. is there a way to do it or ?? regards Armando -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-consumig-ajax-request-of-ot

Re: Wicket consumig ajax request of other plugin

2013-08-02 Thread Martin Grigorov
Hi, See and in web.xml On Fri, Aug 2, 2013 at 12:08 PM, armandoxxx wrote: > Hey ... > > Is there a way to let wicket know that some requests must be ignored ? > (using wicket 6.9) > > I use highcharts charts and export chart method creates post request to > server which should be handled by e

Wicket consumig ajax request of other plugin

2013-08-02 Thread armandoxxx
Hey ... Is there a way to let wicket know that some requests must be ignored ? (using wicket 6.9) I use highcharts charts and export chart method creates post request to server which should be handled by export servlet .. instead wicket processes the request and ofc throws error ... Any help

Re: Table with a lot of ajax links

2013-08-02 Thread DaveS
Yes, It will be great. Thanks a lot Ernesto. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Table-with-a-lot-of-ajax-links-tp4660303p4660647.html Sent from the Users forum mailing list archive at Nabble.com. ---

Re: file upload in nested form with CPM needs dummy model

2013-08-02 Thread Martin Grigorov
Hi, On Thu, Aug 1, 2013 at 6:09 PM, Tom Eicher wrote: > Hello Martin & List, > > Yes, okay, but is it really necessary for me to define an own model class? > Would it not be much more straightforward to just instantiate one of the > existing models, like > new FileUploadField("**UploadFileField"

Re: Generating spreadsheet to send to Client fails in 1.6

2013-08-02 Thread Sven Meier
Hi, I don't know how this worked for you in 1.4.x. But if you're just writing something into the response, how should Wicket know that it has to stop processing the request? Sven On 08/02/2013 04:24 AM, BrianWilliams wrote: Thank you but, did you see my original code? It's 1/2 as long as

Re: Getting Lazy Loaded Panel

2013-08-02 Thread Martin Grigorov
Hi, There are many ways. One of them is: ajaxLoadPanel.get(AjaxLazyLoadPanel.LAZY_LOAD_COMPONENT_ID) and cast it. On Thu, Aug 1, 2013 at 11:37 PM, dhongyt wrote: > I have a lazy load panel and was wondering how I could access the panel > that > is being lazy loaded. > > > > So what I want to d