Re: Gmap3 NullPointerException

2013-08-08 Thread Martin Grigorov
Hi, On Wed, Aug 7, 2013 at 10:58 PM, Vishal Popat vishal.po...@cipriati.co.ukwrote: Hi all, I have set up this to report errors this.getRequestCycleListeners().add(new AbstractRequestCycleListener() { @Override public IRequestHandler onException(RequestCycle cycle,

JQuery version mismatch

2013-08-08 Thread Tron Walseth
I'm not sure this is the right forum, but hopefully someone in charge will read this. I am using wicketstuff-datatables in one of my pages, and when i upgrade to wicket 6.9 these tables break, but they work well in wicket 6.8. I've also tried to upgrade wicketstuff to 6.9, and keep wicket at

Re: JQuery version mismatch

2013-08-08 Thread Martin Grigorov
Hi, On Thu, Aug 8, 2013 at 9:53 AM, Tron Walseth t...@telespor.no wrote: I'm not sure this is the right forum, but hopefully someone in charge will read this. I am using wicketstuff-datatables in one of my pages, and when i upgrade to wicket 6.9 these tables break, but they work well in

Re: Gmap3 NullPointerException

2013-08-08 Thread vp143
Hi Martin, I am not sure on the resolution to this. I do not know why overlay.overlayId would be null? Regards Vishal -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Gmap3-NullPointerException-tp4660777p4660781.html Sent from the Users forum mailing list archive

Re: Gmap3 NullPointerException

2013-08-08 Thread Martin Grigorov
On Thu, Aug 8, 2013 at 10:48 AM, vp143 vishal.po...@cipriati.co.uk wrote: Hi Martin, I am not sure on the resolution to this. I do not know why overlay.overlayId would be null? Me too. Put a breakpoint and see what other parameters are sent to the server. Maybe it is misspelled or

Re: [Announce] wicket-jade

2013-08-08 Thread Decebal Suiu
Hi I try to implement a JadeMarkupFactory (wicket custom MarkupFactory). You can see my current implementation at https://gist.github.com/decebals/6183796 My problem is that if I want to render the jade template I need the map with the variables. JadePanel takes as parameter in constructor a

Re: [Announce] wicket-jade

2013-08-08 Thread Martin Grigorov
Correct. It will not work. Unless it can be made in two steps ... On Thu, Aug 8, 2013 at 1:26 PM, Decebal Suiu decebal.s...@asf.ro wrote: Hi I try to implement a JadeMarkupFactory (wicket custom MarkupFactory). You can see my current implementation at

RequestLogger and MDC

2013-08-08 Thread Marios Skounakis
Hi all, I have run into the following problem with request logger: I have a RequestCycleListener which populates MDC (logging mapped diagnostic context) with some custom properties such as the sessionId, the userId, and some other stuff. The listener populates the MDC in onBeginRequest and

How to force an ajax channel to await that all other ajax channels are not busy before executing its scheduled callbacks?

2013-08-08 Thread Antoine Angenieux
Hi all! In our application, we use two distinct Ajax Channels: - The default one, using the default Queue type - A dedicated channel for what we call actions of type Active All actions use a same class of Behavior that sets the channel in the ajax attributes. What I'd like to achieve is that

Re: RequestLogger and MDC

2013-08-08 Thread Sven Meier
We could probably move the call to IRequestLogger#performLogging() before IRequestCycleListener#onDetach(). Please create a Jira issue. Best regards Sven On 08/08/2013 03:03 PM, Marios Skounakis wrote: Hi all, I have run into the following problem with request logger: I have a

Re: How to force an ajax channel to await that all other ajax channels are not busy before executing its scheduled callbacks?

2013-08-08 Thread Martin Grigorov
Hi Antoine, All this is possible but it is not supported by Wicket's ChannelManager at the moment. There is one Channel instance per channel name. It is reachable thru Wicket.ChannelManager[channelName]. This instance keeps an array of all scheduled functions (Wicket.Channel.callbacks). As far

Re: RequestLogger and MDC

2013-08-08 Thread Martijn Dashorst
No. One of the problems encountered with the request logger was that it didn't properly record request times. There was a JIRA reported that flagged this. The detach phase was not reported, but added significant duration to the request of that particular project. In principle the request should

Re: How to force an ajax channel to await that all other ajax channels are not busy before executing its scheduled callbacks?

2013-08-08 Thread Antoine Angenieux
Hi Martin, Yes, it is what I was looking to achieve, and I was afraid that the only solution was to register in the IJavaScriptLibrarySettings an alternate version of the wicket-ajax-jquery.js script, as this would mean I'll have to keep it in sync with changes made to the origin scripts

header resources order in 1.5.x

2013-08-08 Thread Michal Wegrzyn
Dear, I am trying to integrate select2, but ordering in head doesn't seem to be good. What is the easiest way to order resource references in Wicket 1.5.x? Header decorator? If so, how do I obtain collection with references? Best regards, Michal Wegrzyn

AjaxFormValidatingBehavior with multiple FormComponents

2013-08-08 Thread Jochen Mader
Wicket 6.9.1: I ran into a weird issue: I am trying to submit a form when pressing enter. Using the AjaxFormValidatingBehavior (same for AjaxFormSubmitBehavior) I can submit a form with a SINGLE FormComponent. When adding a second one the form won't submit when pressing enter. Sourcecode below

Re: header resources order in 1.5.x

2013-08-08 Thread Per Newgro
Hi Michal, do you know this? https://github.com/ivaynberg/wicket-select2 There are examples. Maybe it can help Cheers Per Am 08.08.2013 17:27, schrieb Michal Wegrzyn: Dear, I am trying to integrate select2, but ordering in head doesn't seem to be good. What is the easiest way to order

RE: header resources order in 1.5.x

2013-08-08 Thread Michal Wegrzyn
Hi Per, Thanks, but in fact I had in mind wicket-select2, not select2. Anyway I've missed this thread: http://apache-wicket.1842946.n4.nabble.com/renderHead-wicket-head-page-component-order-td4650413.html I've used ParentFirstHeaderRenderStrategy. It is not the cleanest way, but I should not