Re: Wicket Atmosphere jQuery noConflict

2015-06-03 Thread Martin Grigorov
Fixed with https://issues.apache.org/jira/browse/WICKET-5917 Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Wed, Jun 3, 2015 at 5:06 PM, Martin Grigorov mgrigo...@apache.org wrote: Hi, On Wed, Jun 3, 2015 at 4:32 PM, mashleyttu mash...@gmail.com wrote: Our

Re: Wicket Atmosphere jQuery noConflict

2015-06-03 Thread Martin Grigorov
Hi, On Wed, Jun 3, 2015 at 4:32 PM, mashleyttu mash...@gmail.com wrote: Our application uses jQuery.noConflict changing all references from $ to $j. We are trying to integrate Wicket Atmosphere into our application, however, are running into an issue where it is rendering a $ in an

Wicket Atmosphere jQuery noConflict

2015-06-03 Thread mashleyttu
Our application uses jQuery.noConflict changing all references from $ to $j. We are trying to integrate Wicket Atmosphere into our application, however, are running into an issue where it is rendering a $ in an OnDomReadyHeaderItem.forScript. This is of course causing javascript errors. We have

Re: Panels not refreshing when calling AjaxRequestTarget.add(), only in production mode

2015-06-03 Thread lucast
Hi Sven, Thank you for your reply. Yes, I call formComponentPanel#setOutputMarkupPlaceholderTag(true) on all elements involved with the AjaxRequestTarget. I'm still trying to get to the bottom of this. What I am baffled about is why it doesn't work on production mode when it works without any

Re: Panels not refreshing when calling AjaxRequestTarget.add(), only in production mode

2015-06-03 Thread Martin Grigorov
Usually you should use a div. If you know that this component cannot have children with block HTML elements then you can use span too. Read about block vs inline HTML elements in the web. Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Wed, Jun 3, 2015 at 3:55

Re: Panels not refreshing when calling AjaxRequestTarget.add(), only in production mode

2015-06-03 Thread lucast
Hi Martin, Thank you for your reply. Yes, you're absolutely right. I use: *wicket:container wicket:id=emptyPanel /* and it is pretty much how I add panels in the HTML code. What should I use instead, div, span, anything else? Thank you very much for pointing this out. I have been racking my

Re: Panels not refreshing when calling AjaxRequestTarget.add(), only in production mode

2015-06-03 Thread Martin Grigorov
My guess is that you use wicket:container wicket:id= for something that you update with Ajax. You should see WARNs in the logs about it even in DEV mode. Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Wed, Jun 3, 2015 at 3:40 PM, lucast lucastol...@hotmail.com

Re: Wicket Atmosphere jQuery noConflict

2015-06-03 Thread mashleyttu
Sir, you are a gentleman and a scholar for your quick reply with links to excellent examples. Thanks so much. You wicket folks think of a solutions for everything. Love the architecture! -- View this message in context:

editing response in onComponentTag

2015-06-03 Thread msalman
Please see the following code: private static class RequiredLabel extends SimpleFormComponentLabel { private static final long serialVersionUID = 5132250047993256659L; //private boolean required; FormComponent fc;