Re: update panels inside webmarkupcontainer

2013-01-11 Thread Martin Grigorov
See org.apache.wicket.Component#replaceWith() On Fri, Jan 11, 2013 at 3:09 AM, fachhoch fachh...@gmail.com wrote: I have a container with two fragments these fragments are added with some conditional logic, if the condition is not satisfied I add empty panel on ajax update of this

AJAX-enabled component - EditableLink and EditableLabel

2013-01-11 Thread Ondrej Zizka
So here's the first result, please review: Component: https://github.com/OndraZizka/wicket-components/tree/master/src/main/java/org/jboss/essc/wicket/comp/editable Test page: https://github.com/OndraZizka/wicket-components/tree/master/src/main/java/org/jboss/essc/web/test It's based on the

How to pass AJAX behavior to wrapped form component?

2013-01-11 Thread Ondrej Zizka
Hi, if I have an input wrapped in a div (together with other stuff), how can I pass to that input whatever beavior is added to the wrapper? Example: Component HTML goes like div img input ... Then user it's added like add( new MyComponent(foo, model).add( new AjaxEventBehavior(onupdate){

Re: DateField and AjaxFormComponentUpdatingBehavior in wicket 1.5.5

2013-01-11 Thread dpmihai
As the bug link states you have to create date object by yourself. It's ugly as a witch I know. But for wicket 1.5 I had no other solution. I do not know how DateField and DateTimeField perform in wicket 1.6. -- View this message in context:

Re: update panels inside webmarkupcontainer

2013-01-11 Thread fachhoch
I have A Container I added it to the page constructor using on ajaxrequest after the above code will the oldComponent be garbage collected as its no longer being used? -- View this message in context:

Re: wicket-extensions Wizard buttons not working

2013-01-11 Thread shimin_q
Thanks for your suggestions! I am trying to locate the source code for the Wicket-extensions Wizard, and found the following at http://svn.apache.org/viewvc/wicket/branches/wicket-1.5.x/wicket-extensions/src/main/java/org/apache/wicket/extensions/wizard/Wizard.java?view=markup I am using

Re: Wicket, Heroku and scaling

2013-01-11 Thread William Speirs
@Jens Jahnke if you do create an ISessionStore for redis, please post back if you're willing to share. I could see the use in that! Thanks... Bill- On Wed, Jan 9, 2013 at 3:34 PM, Martin Grigorov mgrigo...@apache.orgwrote: Hi, Yes, you can create your own

Re: Wicket, Heroku and scaling

2013-01-11 Thread Jens Jahnke
On Fri, 11 Jan 2013 09:59:35 -0500 William Speirs wspe...@apache.org wrote: WS @Jens Jahnke if you do create an ISessionStore for redis, please WS post back if you're willing to share. I could see the use in that! WS WS Thanks... Of course I'll do that. But it will take some time because I can

motion jpeg and wicket

2013-01-11 Thread Decebal Suiu
Hi Is it possible to implement a motion jpeg in wicket [1]. I want to implement a webcam viewer in wicket. I have a library that give me BufferedImage(s) from a webcam. Now I can display an BufferedImage in wicket but I want to move to the next level. I see two option: --- Implement M-JPEG over

Re: [Wicketstuff] Google Maps 3 component

2013-01-11 Thread vp143
Hi Sylvain, I too am wondering how to pass a component into GInfoWindow rather than a string? Did you find a answer this this. Or does anyone know how to convert a component to an html string? Regards Vishal -- View this message in context:

Re: motion jpeg and wicket

2013-01-11 Thread Marc Nuri San FĂ©lix
Hello This is not a motion jpeg, but it can be used to accomplish your needs without major complications You can create a Panel with an image that replaces the image every time it renders overriding the onBeforeRender method: addOrReplace(new Image(image, new

Re: CSS load order in 6.x

2013-01-11 Thread vp143
Just to let everyone know, I ended up resolving this issue but changing to http://www.7thweb.net/wicket-jquery-ui/ DatePicker. I prefer this DatePicker (so far) for other reasons too. -- View this message in context:

Re: wicket-extensions Wizard buttons not working

2013-01-11 Thread shimin_q
Unfortunately, overriding the newForm() of Wizard as suggested did not do the trick. Actually none of the buttons (Next, Cancel, Previous, ...) is working so my initial hunch was incorrect. Could you provide the location of the Wizard source code for wicket 6.x? In the 1.5 version, I see a

Re: [wicket-atmosphere] atmosphere version

2013-01-11 Thread Pierre Goupil
Sure! But it doesn't help. And as I said, there is no error in my logs, neither client-side nor server-side. As I understand things, it should work with any version of Atmosphere starting from 1.0.0, right? Do you have any clue? Regards, Pierre On Thu, Jan 10, 2013 at 1:07 PM, Emond

Re: [wicket-atmosphere] atmosphere version

2013-01-11 Thread Emond Papegaaij
Yes, it should work with any 1.0 version. I think you should try to verify the AJAX-messges, perhaps with Wicket's AJAX-debugger. Best regards, Emond On Friday 11 January 2013 17:06:09 Pierre Goupil wrote: Sure! But it doesn't help. And as I said, there is no error in my logs, neither

Re: [wicket-atmosphere] atmosphere version

2013-01-11 Thread Pierre Goupil
I've found it! I had a HttpSession supported: false in my start-up Tomcat logs when using Atmosphere 1.0.5. I don't know why, but I assume it's a default behaviour change because when using Atmosphere 1.0.0 and changing nothing else, I had: HttpSession supported: true. So I've followed

HttpsMapper with Apache Virtual Host Appending the Wrong Path

2013-01-11 Thread Tim Urberg
I using Wicket 6.4.0 and am deploying to WebLogic server version 10.3.5.0 I have set up a simple HttpsMapper in my WebApplication like this: @Override public void init() { ... setRootRequestMapper(new HttpsMapper(getRootRequestMapper(), new HttpsConfig())); } I have a login

Re: motion jpeg and wicket

2013-01-11 Thread Ernesto Reinaldo Barreiro
Hi, On Fri, Jan 11, 2013 at 4:19 PM, Decebal Suiu decebal.s...@asf.ro wrote: Hi Is it possible to implement a motion jpeg in wicket [1]. I want to implement a webcam viewer in wicket. I have a library that give me BufferedImage(s) from a webcam. Now I can display an BufferedImage in wicket

Re: [wicket-atmosphere] atmosphere version

2013-01-11 Thread Emond Papegaaij
That's good to hear. I totally forgot about that option. It was added some time ago and is indeed needed for Wicket. Without it the behavior does not work because it is stateful. Best regards, Emond Op 11 jan. 2013 19:01 schreef Pierre Goupil goupilpie...@gmail.com het volgende: I've found it!

Re: [Wicketstuff] Google Maps 3 component

2013-01-11 Thread Martin Grigorov
On Fri, Jan 11, 2013 at 5:30 PM, vp143 vishal.po...@cipriati.co.uk wrote: Hi Sylvain, I too am wondering how to pass a component into GInfoWindow rather than a string? Did you find a answer this this. Or does anyone know how to convert a component to an html string? Check the panel

Re: motion jpeg and wicket

2013-01-11 Thread Decebal Suiu
Hi @Marc Implementation using AjaxSelfUpdatingTimerBehavior is better that nothing, it's quick and dirty but it's not scalable. Think at some webcams on the same page with a FPS (frame per second) around 5. @Ernesto Cabzola has a streamer based on multipart/x-mixed-replace mime type but it uses

Re: motion jpeg and wicket

2013-01-11 Thread Martin Grigorov
You may try to push the updates with Atmosphere/Native WebSockets. Also see https://github.com/videlalvaro/gifsockets. May be useful for you. On Sat, Jan 12, 2013 at 12:14 AM, Decebal Suiu decebal.s...@asf.ro wrote: Hi @Marc Implementation using AjaxSelfUpdatingTimerBehavior is better that

Re: [Wicketstuff] Google Maps 3 component

2013-01-11 Thread vp143
Martin Grigorov-4 wrote Check the panel example at: http://www.wicket-library.com/wicket-examples-6.0.x/mailtemplate/lt;http://www.wicket-library.com/wicket-examples-6.0.x/mailtemplate/?0gt; Many thanks Martin, that got me the string I required. FYI if a panel html has something like this:

Re: Eclipse-IDE Plugin Wicket Bench not existing (any more)?

2013-01-11 Thread Paul Bors
Whoever is still interested in this plugin, I saved a copy of WicketBench v0.5.1 as a zip from an older Eclipse installed on my workstation. I wish the source code was still around. Anyhow, it still kinda works with Eclipse Juno after extracting the zip contents to [eclipse root]\plugins\. If

Re: AjaxEditableLabel not saving after migration to 6.3

2013-01-11 Thread N. Metzger
I believe this is a bug in wicket 6.3, because I switched to wicket 6.4 and it miraculously works again without code changes on my side. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/AjaxEditableLabel-not-saving-after-migration-to-6-3-tp4654769p4655314.html Sent

Wicket Panel Error

2013-01-11 Thread Arun Chauhan
I have a wicket page *MerchantPage.java* inside which I am having a panel *PRODUCTLISTPANEL.JAVA*. Inside which I am having another panel *PRODUCTUPDATEPANEL.JAVA* in which I am uploading image using a IFRAME trick. Iframe name is updateProduct. I am getting this error. Last cause: Unable to