Re: How to determine which behavior corresponds to the currently handled request target

2009-07-27 Thread Vladimir K
Could anyone shed light on that? -- View this message in context: http://www.nabble.com/How-to-determine-which-behavior-corresponds-to-the-currently-handled--request-target-tp24635282p24680015.html Sent from the Wicket - User mailing list archive at Nabble.com

Re: How to determine which behavior corresponds to the currently handled request target

2009-07-27 Thread Igor Vaynberg
you can use AjaxRequestTarget.get() to see if an ajax request is being processed. -igor On Mon, Jul 27, 2009 at 5:41 AM, Vladimir Kkoval...@gmail.com wrote: Could anyone shed light on that? -- View this message in context: http://www.nabble.com/How-to-determine-which-behavior-corresponds

Re: How to determine which behavior corresponds to the currently handled request target

2009-07-27 Thread Vladimir K
: http://www.nabble.com/How-to-determine-which-behavior-corresponds-to-the-currently-handled--request-target-tp24635282p24686879.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users

Re: How to determine which behavior corresponds to the currently handled request target

2009-07-27 Thread Igor Vaynberg
request is being processed. -igor On Mon, Jul 27, 2009 at 5:41 AM, Vladimir Kkoval...@gmail.com wrote: Could anyone shed light on that? -- View this message in context: http://www.nabble.com/How-to-determine-which-behavior-corresponds-to-the-currently-handled--request-target

How to determine which behavior corresponds to the currently handled request target

2009-07-23 Thread Vladimir Kovalyuk
I'm trying to design a joda time based DateTime field. There are two reasons - I use joda time only - I have to wire tree components - start date, finish date and duration, so I have to add I managed to get it working but I'm concerned about the approach I took. So please critics are welcome.