Re: Version 6.0.0-beta3: Ajax upload file is not working in IE

2012-08-08 Thread Martin Grigorov
Hi, Please create a ticket with a quickstart. On Wed, Aug 8, 2012 at 9:05 AM, David JavaDeveloper javadeveloper.da...@gmail.com wrote: Hi, The description of the problem: In IE (IE8, IE9), when pressing on the button that supposed to do the Ajax upload – a new explorer window is opened

Re: Version 6.0.0-beta3: Ajax upload file is not working in IE

2012-08-08 Thread David JavaDeveloper
Ok, I did. https://issues.apache.org/jira/browse/WICKET-4701 On Wed, Aug 8, 2012 at 9:43 AM, Martin Grigorov mgrigo...@apache.orgwrote: Hi, Please create a ticket with a quickstart. On Wed, Aug 8, 2012 at 9:05 AM, David JavaDeveloper javadeveloper.da...@gmail.com wrote: Hi, The

Wicket freelancer job in Vienna, Austria

2012-08-08 Thread Marco Zapletal
Dear Wicket folks, we are looking for Wicket developer on a freelancer basis for an ongoing project in Vienna, Austria. If you are potentially interested please do not hesitate to contact me for further details. Best regards, Marco Zapletal

Re: Change http status code on ajax response redirect?

2012-08-08 Thread paul_s
Thanks, Martin - will give that a go! -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Change-http-status-code-on-ajax-response-redirect-tp4650793p4651050.html Sent from the Users forum mailing list archive at Nabble.com.

Re: load page in Wicket and message from web browser

2012-08-08 Thread vaibhav2012
Hi, I never came across such a scenario. Can you show the exact piece of code you are using, i can try to figure out by looking at it. - Regards, Vaibhav Gupta -- View this message in context:

Image is not getting ajax refreshed in wicket 1.5

2012-08-08 Thread kshitiz
Hi, I am simply displaying a captcha image which is suppose to refresh on hitting a button: * final String captchaValue = generateRandomString(30); final NonCachingImage image = new NonCachingImage(image, new

Re: Wicket freelancer job in Vienna, Austria

2012-08-08 Thread Andreas Petersson
Hello! I am potentially interested. Can you tell me some details about the project scope and timeline. best regards, Andreas Petersson Am 08.08.2012 12:25, schrieb Marco Zapletal: we are looking for Wicket developer on a freelancer basis for an ongoing project in Vienna, Austria. If you

Re: Image is not getting ajax refreshed in wicket 1.5

2012-08-08 Thread kshitiz
Solved...actually my mistake...I was refreshing the image in onError section... -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Image-is-not-getting-ajax-refreshed-in-wicket-1-5-tp4651053p4651056.html Sent from the Users forum mailing list archive at Nabble.com.

Re: [6.0] wicket-atmosphere

2012-08-08 Thread Pierre Goupil
Hello, It looks like a problem with the WebSockets. I've tried to provide a Locale, but no way: class MySession extends WebSession { private static final long serialVersionUID = 1L; public MySession(final Request req) { super(req); } @Override public void

Page serialization testing

2012-08-08 Thread Crabb, Curtis
I am in the process of upgrading from version 1.4.13 of Wicket to the latest and greatest 6.0 build. As part of this process, we are finally going through the work of insuring that our wicket component trees are serializable (we have bypassed the serialization process in the past due to a few

Wicket developers in Atlantic Canada or the Toronto area

2012-08-08 Thread gmparker2000
My company is looking for developers with in-depth wicket experience, preferably in Atlantic Canada or the Toronto area. This could be full-time or contract work. The position would involve mentoring Wicket developers as well as assisting with on-going wicket development. Anyone interested can

Re: Tabbed Panel error

2012-08-08 Thread technimadhu
In my html page, the span tag got removed. so pasting it with pre tag. [tabbed panel will be here] -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Tabbed-Panel-error-tp4651059p4651061.html Sent from the Users forum mailing list

RE: Page serialization testing

2012-08-08 Thread Crabb, Curtis
To answer my own first question, I am now approaching this from a different angle and simply extending PageManager and overriding getPage to serialize and deserialize at that point... this accomplishes the testing that I would like to and avoids the ajax issues mentioned below. But I am still

Key = Value search panel with actf

2012-08-08 Thread Sandor Feher
Hi, I'm looking for a component similar to DatePicker which let user to choose a value from a key = value list. It should contain an actf field let user to filter the values. Something like this: http://apache-wicket.1842946.n4.nabble.com/file/n4651064/lov.png thnx., Sandor -- View this

Re: Key = Value search panel with actf

2012-08-08 Thread Igor Vaynberg
you can try using this: http://ivaynberg.github.com/select2/ there is also wicket integration in my github -igor On Wed, Aug 8, 2012 at 2:12 PM, Sandor Feher sfe...@bluesystem.hu wrote: Hi, I'm looking for a component similar to DatePicker which let user to choose a value from a key =

How to display a grid with empty cells

2012-08-08 Thread Alec Swan
Hello, I am using Wicket 1.4.17 and need to display a 3x3 table with all of its cells, some of which may not have a model and hence blank. So, if my DataProvider returns 0 elements than I want all 9 cells to be shown as blank. I started using GridView and overrode its populateEmptyItem() method

Re: How to display a grid with empty cells

2012-08-08 Thread Bertrand Guay-Paquet
Hi, I haven't used the GridView directly so I can't help you with it specifically. However, have you considered modifying your provider to always return 9 records with some having an empty placeholder? It's definitely a hack, but it may be worth a try. Bertrand On 08/08/2012 10:56 PM, Alec