Re: Image does not appears not always

2013-01-15 Thread Martin Grigorov
What do you see in the produced html ? On Mon, Jan 14, 2013 at 11:45 PM, Delange delan...@telfort.nl wrote: 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

Re: HttpsMapper broken with Mounted pages

2013-01-15 Thread Martin Grigorov
Hi, Please create a ticket and attach your quickstart. It will be good to fix this for 6.5.0 (scheduled for this Friday (Jan 18)). On Tue, Jan 15, 2013 at 3:18 AM, Jeremy Levy jel...@gmail.com wrote: I believe I may have stumbled upon somewhat serious issue with 6.4.0 (and possibly earlier).

Re: MounterMapper and optional parameters

2013-01-15 Thread Martin Grigorov
Hi, On Tue, Jan 15, 2013 at 9:30 AM, Dirk Forchel dirk.forc...@exedio.comwrote: 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

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

2013-01-15 Thread vijay
Have already used the below code : Application.getResourceSettings().getLocalizer().clearCache() But this doesn't work. But don't have idea about second approach. Can u pls provide exact code segement that can be directly used in our application to resolve this issue, that will be much

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

2013-01-15 Thread Martin Grigorov
Hi, Can you give more details what you have tried and what doesn't work ? What do you try to accomplish too ? Do you try to modify a resource bundle in production system ? Which IStringResourceLoader impl you use to load this resource bundle ? On Tue, Jan 15, 2013 at 11:47 AM, vijay

Re: MounterMapper and optional parameters

2013-01-15 Thread Martin Grigorov
On Tue, Jan 15, 2013 at 12:27 PM, Dirk Forchel dirk.forc...@exedio.comwrote: Thanks Igor. Actually my name is Ivan! :-) It is the opposite - ${} is mandatory and #{} is optional. Yes, your are right. mountPage(/products/${category}/${product}, ProductPage.class) ${product} will

Re: MounterMapper and optional parameters

2013-01-15 Thread Dirk Forchel
Sorry for the Igor, Martin. Anyway, thank you for your help. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/MounterMapper-and-optional-parameters-tp4655372p4655384.html Sent from the Users forum mailing list archive at Nabble.com.

IE CSS engine doesn't support dynamically injected links in conditional comments

2013-01-15 Thread Marieke Vandamme
Hi, We use wicket 6.4.0 and as a result of WICKET-4894 we now get the following message in our logfiles very often: IE CSS engine doesn't support dynamically injected links in conditional comments. I don't know how to solve this, since this is happening when adding a component to the target.

Re: Multiple select drop down in Wicket

2013-01-15 Thread Andrew Geery
Yes, it is possible. See https://github.com/ivaynberg/wicket-select2 (http://ivaynberg.github.com/select2/ is the standalone UI piece, if you're interested). And it is available via Maven. Andrew On Mon, Jan 14, 2013 at 9:17 PM, kshitiz k.agarw...@gmail.com wrote: Actually ListMultipleChoice

Fwd: Wicket Contractor

2013-01-15 Thread Tom Norton
This position is only available onsite at our headquarters in Elyria, Ohio. Sorry for not mentioning this earlier, Tom -- Forwarded message -- From: Tom Norton tomwnorton.mailing.li...@gmail.com Date: Tue, Jan 15, 2013 at 9:17 AM Subject: Re: Wicket Contractor To:

Re: HttpsMapper broken with Mounted pages

2013-01-15 Thread Jeremy Levy
Thanks- Done. https://issues.apache.org/jira/browse/WICKET-4979 On Tue, Jan 15, 2013 at 3:05 AM, Martin Grigorov mgrigo...@apache.orgwrote: Hi, Please create a ticket and attach your quickstart. It will be good to fix this for 6.5.0 (scheduled for this Friday (Jan 18)). On Tue, Jan 15,

Re: Problem with Wicket distribution

2013-01-15 Thread e . spyrop . w
Thank you for all your efforts. Martijn Dashorst martijn.dasho...@gmail.com wrote on 14/01/2013 10:05:01 AM: Martijn Dashorst martijn.dasho...@gmail.com 14/01/2013 10:05 AM Please respond to users@wicket.apache.org To users@wicket.apache.org, cc Subject Re: Problem with

Make URLs (i.e. mount paths) case insensitive for Wicket 6

2013-01-15 Thread Yuci G EBI
Hello, Wonder how to make URLs (i.e. mount paths) case insensitive for Wicket 6? For example, make these two URLs do the same thing: localhost/AboutUs and localhost/aboutus I understand for Wicket 1.4.x, you could achieve it in the way below: public class DemoApplication extends

RE: Multiple select drop down in Wicket

2013-01-15 Thread Paul Bors
I gave up on the normal select in HTML and started to use Igor's Select2. See http://ivaynberg.github.com/select2/ ~ Thank you, Paul Bors -Original Message- From: kshitiz [mailto:k.agarw...@gmail.com] Sent: Monday, January 14, 2013 9:17 PM To: users@wicket.apache.org Subject: RE:

Do not cache pages, nor in application, nor in browser

2013-01-15 Thread Oscar Besga Arcauz
I use these code in order to avoid web page cache, in browser and in wicket application; also I want to avoid disk caching and serialization I'm using Wicket6 ¿ Do you see this code correct ? ¿ Is there any easier way to accomplish this ? /** * App */ public class MyApplication extends

Re: AjaxFormComponentUpdatingBehavior onUpdate() not triggered sometimes

2013-01-15 Thread shimin_q
Thanks, Martin. I use wicket 6.3.0. I know 6.4.0 is out now, which jquery version that goes with 6.4.0? I tried putting the drop down directly under Form, it did not work, so that was not the problem. I will try changing the event name as you suggested. -- View this message in context:

Re: Multiple select drop down in Wicket

2013-01-15 Thread Marios Skounakis
I've considered using select2 (it looks very impressive) but I was put off by the fact that its appearance is not consistent with the rest of the input controls. How do people solve this? On Tue, Jan 15, 2013 at 6:34 PM, Paul Bors p...@bors.ws wrote: I gave up on the normal select in HTML and

Re: HttpsMapper broken with Mounted pages

2013-01-15 Thread Jeremy Levy
Just to close the loop here. If setRootRequestMapper(new HttpsMapper... is done before you add your mounts, they will not be enabled for SSL. I've added and updated the Wiki to reflect this as well as requested the line in the javadoc where this is be mentioned be made more prominent. Jeremy

Re: HttpsMapper broken with Mounted pages

2013-01-15 Thread Sven Meier
Thanks :) On 01/15/2013 08:45 PM, Jeremy Levy wrote: Just to close the loop here. If setRootRequestMapper(new HttpsMapper... is done before you add your mounts, they will not be enabled for SSL. I've added and updated the Wiki to reflect this as well as requested the line in the javadoc where

How to avoid this error TypeError: $(...) is null

2013-01-15 Thread saty
I am trying to use jQuery UI MultiSelect Widget by Eric Hynds (http://www.erichynds.com/jquery/jquery-ui-multiselect-widget/) in one of our current wicket application. This works fine using Wicket ListMultipleChoice on a simple panel with no other components, but on a complex panel (several other

Re: after migration to 1.5 I get java.lang.IllegalStateException: Header was already written to response!

2013-01-15 Thread Barrett Snyder
I had this same issue and tracked it down to IE9. In my case IE9 was first requesting a page in Quirks mode and then midway through requesting resources it would switch to standards mode which caused it to abort all currently active requests and request all resources again. The aborted requests

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

2013-01-15 Thread vijay
Hi, I have used the below code directly in my program before calling getLocalizer().getString(...,...): Application.getResourceSettings().getLocalizer().clearCache(); but i didn't get the latest change in property file until i restart the server. No, I didn't try to change the resource bundle

Re: How to avoid this error TypeError: $(...) is null

2013-01-15 Thread Sven Meier
What is the exact error message? Sven On 01/15/2013 11:05 PM, saty wrote: I am trying to use jQuery UI MultiSelect Widget by Eric Hynds (http://www.erichynds.com/jquery/jquery-ui-multiselect-widget/) in one of our current wicket application. This works fine using Wicket ListMultipleChoice on

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

2013-01-15 Thread Martin Grigorov
Hi, This is the correct way. Set a breakpoint at org.apache.wicket.Localizer#getStringIgnoreSettings(final String key, final Component component, final IModel? model, Locale locale, String style, final String defaultValue) and see what happens. On Wed, Jan 16, 2013 at 7:50 AM, vijay