Re: Problem with Wicket distribution

2013-01-14 Thread Martijn Dashorst
This is due to a change in release architecture where we have to push our releases through svnpubsub. We migrated our infrastructure, but not the latest releases. I'll upload those now. Martijn On Mon, Jan 14, 2013 at 6:08 AM, e.spyro...@teamconcepts.gr wrote: Thanks, I did, and then

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

2013-01-14 Thread Martijn Dashorst
On Sun, Jan 13, 2013 at 10:24 PM, Paul Bors p...@bors.ws wrote: I know I use that too, but what I really liked about wicket-bench was the bottom tabs for the Java resources. The associated HTML files and etc did not have to be open in a different top tab but they were associated with the Java

Re: update panels inside webmarkupcontainer

2013-01-14 Thread Jochen Mader
As long as you are not holding references on your own it will be collected after a replaceWith. On deleting pages: You could use DefaultPageStore.removePage but I am not sure if that's a really good idea. Wicket is pretty good in managing what's in the store and you should rely on its behavior as

Re: ASK: Updating one wicket page's component from other wicket apps

2013-01-14 Thread Jochen Mader
I would say he already provided all workable options: 1. Use a dedicated messaging mechanism (JMS) through a container (Spring, JEE6, ...) 2. Build your own messaging mechanism Which one is best for you depends on your requirements. On Mon, Jan 14, 2013 at 12:56 AM, Noven noven_...@yahoo.com

Re: motion jpeg and wicket

2013-01-14 Thread Marc Nuri San Félix
Hello The complex way of solving your problem would be by means of an IRequestHandler and an IRequestMapper. I use this same system to generate JSON responses in my projects without the need of using another servlet thus sharing all of my wicket Session security information. Your IRequestHandler

Re: motion jpeg and wicket

2013-01-14 Thread Martin Grigorov
On Mon, Jan 14, 2013 at 11:23 AM, Ernesto Reinaldo Barreiro reier...@gmail.com wrote: Marc, You could still use another servlet and have access to wicket session via WicketSessionFilter. Or use #mountReference(new MyResourceReference()) with MyIResourceImpl(). On Mon, Jan 14, 2013 at

Re: motion jpeg and wicket

2013-01-14 Thread Decebal Suiu
Hi Marc Thanks for response. A custom Mapper with a RequestHandler that do my job was one of ideas but onRespond I must implement a while loop and I know if it's ok. For example: public void respond(IRequestCycle requestCycle) { // se content type to

Re: motion jpeg and wicket

2013-01-14 Thread Marc Nuri San Félix
Ernesto I prefer to have all my URL mappings centralized, so I try to use the Wicket way where available. Although it's interesting to know that you can access wicket Session this way. What I'd really do is try to proxy/tunnel the stream directly from the webcam to the client using an appropriate

Radio AjaxEventBehavior(onclick)

2013-01-14 Thread Ronny.Voss
Hi People I searched community on this scenario: Catch onclick event on Radio AT RadioGroup level (so to speak). So no matter how many Radio I have, I could handle actual actions to be taken at one place, ie RadioGroup -- identify the selected Radio. This seems straight forward on a

Re: Radio AjaxEventBehavior(onclick)

2013-01-14 Thread francois meillet
On the RadioGroup you can add an AjaxFormChoiceComponentUpdatingBehavior() François On Mon, Jan 14, 2013 at 12:01 PM, ronny.v...@consult.nordea.com wrote: Hi People I searched community on this scenario: Catch onclick event on Radio AT RadioGroup level (so to speak). So no matter how many

Re: Ajax request stopped because of precondition check

2013-01-14 Thread Andrea Del Bene
AJAX precodintions are handled with interface IAjaxCallListener. Check if your AjaxLink overrides method updateAjaxAttributes and if it adds one or more IAjaxCallListener Hi, I am using jquery ui menu widget and AjaxLink for the menu items. The click event fails because of a precondition

wicket 1.5 ajax replace and jquery memory leak

2013-01-14 Thread Sven Meier
Hi all, I'm investigating a browser memory leak in an application based on Wicket 1.4. We're using jQuery event handlers (qtip) on rows in a Wicket dataTable. Each time paging of the dataTable is changed through Ajax, the web page leaks jQuery objects and DOM nodes. I think the cause for

Re: wicket 1.5 ajax replace and jquery memory leak

2013-01-14 Thread Martin Grigorov
Hi Sven, On Mon, Jan 14, 2013 at 3:23 PM, Sven Meier s...@meiers.net wrote: Hi all, I'm investigating a browser memory leak in an application based on Wicket 1.4. We're using jQuery event handlers (qtip) on rows in a Wicket dataTable. Each time paging of the dataTable is changed through

Re: wicket 1.5 ajax replace and jquery memory leak

2013-01-14 Thread Sven Meier
Thanks Martin, I was afraid of that answer ;). @wiquery-devs: Does wiquery help here or do I have to roll my own monkey-patch? Thanks Sven On 01/14/2013 02:40 PM, Martin Grigorov wrote: Hi Sven, On Mon, Jan 14, 2013 at 3:23 PM, Sven Meier s...@meiers.net wrote: Hi all, I'm

Re: wicket 1.5 ajax replace and jquery memory leak

2013-01-14 Thread Ernesto Reinaldo Barreiro
Hi, On Mon, Jan 14, 2013 at 4:13 PM, Sven Meier s...@meiers.net wrote: Thanks Martin, I was afraid of that answer ;). @wiquery-devs: Does wiquery help here or do I have to roll my own monkey-patch? AFAIK there is nothing on wiquery to fix that... but I might be wrong. By the way... I

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

2013-01-14 Thread Paul Bors
That's weird because in Eclipse Indigo (and prior version) I configured Eclipse to have the default Java editor be replaced with the wicket-bench editor and things worked fine for me for both Wicket and traditional Java projects. Even for traditional Java projects it saved room as the wicket-bench

Multiple select drop down in Wicket

2013-01-14 Thread kshitiz
Hi, I am trying to implement multiple select drop down in Wicket. I am able to create multi select drop down view using bootstrap but I am not able to get how to relate selected options with IModel of drop down component? Is there any possibility in Wicket? -- View this message in context:

RE: Multiple select drop down in Wicket

2013-01-14 Thread Paul Bors
Multiple selects take a collection of objects and not a single object for the model type so you should use IModel? extends CollectionObjectType. For example see how your favorite sites is used on: http://www.wicket-library.com/wicket-examples/forminput ~ Thank you, Paul Bors -Original

Re: wicket 1.5 ajax replace and jquery memory leak

2013-01-14 Thread Ernesto Reinaldo Barreiro
Hi, On Mon, Jan 14, 2013 at 4:23 PM, Ernesto Reinaldo Barreiro reier...@gmail.com wrote: Hi, On Mon, Jan 14, 2013 at 4:13 PM, Sven Meier s...@meiers.net wrote: Thanks Martin, I was afraid of that answer ;). @wiquery-devs: Does wiquery help here or do I have to roll my own

Re: Ajax request stopped because of precondition check

2013-01-14 Thread Oliver Krohne
Hi, I am not overriding updateAjaxAttributes, I am just implementing onClick. The AjaxLink is working fine outside the jquery ui menu. It seems to be a problem with the events of the menu widget. Can I somehow disable the precondition on the AjaxLink? Thanks, Oliver Am 14.01.2013 um 12:45

Wicket getLocalizer().getString(.. Issue

2013-01-14 Thread vijay
Hi All, I am using getLocalizer().getString(..,..) to fetch the resource (.property file) content. But it always fetching the content from cache and to get the latest change in the resource file have to restart the server again, which is a big issue as we can't start production server every

Re: Wicket getLocalizer().getString(.. Issue

2013-01-14 Thread Francois Meillet
Application.getResourceSettings().getLocalizer().clearCache() does that. You can also use the clearLocalizerCache method via jmx, within the Application mbean. François Le 14 janv. 2013 à 13:11, vijay sevijay@gmail.com a écrit : Hi All, I am using getLocalizer().getString(..,..) to

AjaxFormComponentUpdatingBehavior onUpdate() not triggered sometimes

2013-01-14 Thread shimin_q
Hi, I have a DropDownChoice that I implemented an AjxFormComponentUpdatingBehavior onUpdate() method. I have been battling with a problem with its onUpdate() not being triggered/executed every time user selects a choice from the DropDownChoice. In Firefox, it sometimes is triggered, sometime

RE: Multiple select drop down in Wicket

2013-01-14 Thread Paul Bors
Yes, the example shows a ListMultipleChoice. Is that not working for you? ~ Thank you, Paul Bors -Original Message- From: kshitiz [mailto:k.agarw...@gmail.com] Sent: Monday, January 14, 2013 2:06 PM To: users@wicket.apache.org Subject: RE: Multiple select drop down in Wicket Are you

Image does not appears not always

2013-01-14 Thread Delange
I have a website where a user can upload images. On the first page, i always show one image on this home page Strange enough, mostly i can see the image but sometimes not. What could be the reason that no image is shown? @Html images/noimage.jpg @Directory structure wepapps mywebsite

Re: Wicket Contractor

2013-01-14 Thread Petr Sakař
Hello Tom, I would be definitely interested (and surprisingly would hopefully fulfil your requirements (well Hibernate 4.1)), but I'm living in Europe/Prague. Any chance you would open development center here ? Petr Sakar To anyone that is interested: My company (The Ridge Tool Company) is

Re: Wicket Contractor - please ignore, sorry for sending to wrong email

2013-01-14 Thread Petr Sakař
Excuse me, I've forget to change the mail address ... - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

HttpsMapper broken with Mounted pages

2013-01-14 Thread Jeremy Levy
I believe I may have stumbled upon somewhat serious issue with 6.4.0 (and possibly earlier). A page that is annotated with @RequiresHttps and is mounted with any encoding method, when requested directly, or linked to is not switched over to https. If the page is not specifically mounted it works

Re: Ajax request stopped because of precondition check

2013-01-14 Thread Martin Grigorov
Hi, There is a default precondition that checks that the HTML element (the link in this case) on which the event ('click') listens is still in the current DOM document. But I don't see how it will return false - if it wasn't in the document then you wont be able to click on it. If you are able

MounterMapper and optional parameters

2013-01-14 Thread Dirk Forchel
Hallo, I'd like to get an hint how to provide the following URLs. What is the preferred way to improve our existing URLs? We need search-friendly URLs by naming them with clear keywords. For example for product pages the current URL looks like: http://localhost:8080/product.html?product=1234 This

Re: AjaxFormComponentUpdatingBehavior onUpdate() not triggered sometimes

2013-01-14 Thread Martin Grigorov
Hi, Which version of Wicket do you use ? Try with 'change' as event name, instead of 'onChange'. On Mon, Jan 14, 2013 at 10:01 PM, shimin_q smq...@hotmail.com wrote: Hi, I have a DropDownChoice that I implemented an AjxFormComponentUpdatingBehavior onUpdate() method. I have been battling