Re: Getting client's date and time

2008-03-21 Thread Cristi Manole
now that was a great tip :) thanks for reminding me... i knew about this feature... i even used it in a previous project... wicket can gather a lot of browser settings including time :) for ppl also looking for this, don't forget to put this into your WebApplication class: getRequestCycl

Re: Getting client's date and time

2008-03-21 Thread James Carman
On 3/21/08, James Carman <[EMAIL PROTECTED]> wrote: > On 3/21/08, Cristi Manole <[EMAIL PROTECTED]> wrote: > > > yes, i can, but how can i read it without post? > > > > it doesn't even need to be hidden as i want it shown... i just want to > query > > it from time to time., again - without a

Re: Getting client's date and time

2008-03-21 Thread James Carman
On 3/21/08, Cristi Manole <[EMAIL PROTECTED]> wrote: > yes, i can, but how can i read it without post? > > it doesn't even need to be hidden as i want it shown... i just want to query > it from time to time., again - without a post. > > is it possible to read it through ajax or from the dom... o

Re: Getting client's date and time

2008-03-21 Thread Cristi Manole
yes, i can, but how can i read it without post? it doesn't even need to be hidden as i want it shown... i just want to query it from time to time., again - without a post. is it possible to read it through ajax or from the dom... or something, inside wicket? On Fri, Mar 21, 2008 at 2:21 PM, Jame

Re: Getting client's date and time

2008-03-21 Thread James Carman
On 3/21/08, Cristi Manole <[EMAIL PROTECTED]> wrote: > Hello, > > I'm looking for a quick solution to get the client's date and time in a > wicket modal, without a post > > I can have a wicket component, like a label and I can use js functions to > set it in a span for example. > > The questio

Getting client's date and time

2008-03-21 Thread Cristi Manole
Hello, I'm looking for a quick solution to get the client's date and time in a wicket modal, without a post I can have a wicket component, like a label and I can use js functions to set it in a span for example. The question is... how can i read that value I set in js in wicket? Is it possible?