Re: Community tools

2011-10-07 Thread Bert
I had a discussion about this with martin dashorst when we meet this year at a conference. Apparently, he does like the idea of a SO like QA site for wicket. But wicket being an Apache project, there are certain requirement if i recall our discussion correctly. One of the problems is the hosting

custom url for specific pages

2011-10-07 Thread brazz
In our application (portal) we have a modal dialog that we have to use. In this modal dialog we put a page. Because the portal consists of iframes, we have to use relative urls in the modal dialog. For example instead of:

Forwarding in 1.5 not working like in 1.4

2011-10-07 Thread Chris Colman
We have a separate filter set up to catch parameter-less domain name requests ( /* ) like: www.myurl.com http://www.myurl.com/ and forward them to a bookmarkable home page like: www.myurl.com/content/home/o/123 The extra o/123 is an organization discriminator name/value pair and is read

[wicket 1.5] Howto avoid 404 on shared image?

2011-10-07 Thread Mike Mander
Hi, i use 1.5.1 (in 1.5 examples i couldn't find a matching one) I've packaged my application images to a package (appname.res.img). WicketApplication is located in root package (appname). In the images package there is a class ImageMounter which is loading all images in package and mount

Re: [wicket 1.5] Howto avoid 404 on shared image?

2011-10-07 Thread Martin Grigorov
See http://wicketinaction.com/2011/07/wicket-1-5-mounting-resources/ for inspiration On Fri, Oct 7, 2011 at 10:25 AM, Mike Mander wicket-m...@gmx.de wrote: Hi, i use 1.5.1 (in 1.5 examples i couldn't find a matching one) I've packaged my application images to a package (appname.res.img).

DateField with String model

2011-10-07 Thread Pirlouit Le
Hi wicket community,I'm trying to use a DateField (org.apache.wicket.extention.yui.calendar.DateField)with a String in the model, is this possible, perhaps can I provide a converter, a smth like this ? Kind Regards, Benoît de Biolley

Re: Community tools

2011-10-07 Thread Martijn Dashorst
The biggest issue with moving to Stack Overflow is that we deliver our community to an external party which can do anything with the questions, show stupid ads, etc. Have no mistake: stack exchange is a commercial venture. So one criterium is to be able to pull the plug on it whenever it goes

Re: [wicket 1.5] Howto avoid 404 on shared image?

2011-10-07 Thread Mike Mander
Thanks Martin, Uuuh. That is heavy-weight for my little uc :-) Instead of using an image i use now code WebComponent image = new WebComponent(itemSpot); image.add(new SrcModifier(Model.String of(/resources/shop/img/transparency.png))); /code My page is still stateless,

Re: [wicket 1.5] Howto avoid 404 on shared image?

2011-10-07 Thread Martin Grigorov
On Fri, Oct 7, 2011 at 12:31 PM, Mike Mander wicket-m...@gmx.de wrote: Thanks Martin, Uuuh. That is heavy-weight for my little uc :-) I'd say that your approach was heavy-weight. You were going to add a mapper for each image, while my approach adds just one (stateless) mapper that dynamically

Converter for FileUpload

2011-10-07 Thread Ian Marshall
Hello All, I am porting my Wicket 1.4.18 application to 1.5.1. I am now getting the following exception when I use a org.apache.wicket.markup.html.form.upload.FileUploadField to upload a file, when all worked well in 1.4.18: ... 43 more Caused by:

IllegalArgumentException within WicketURLDecoder

2011-10-07 Thread Patrick Petermair
Hi! From time to time we are getting an IllegalArgumentException within WicketURLDecoder (see below). We can't reproduce the error and it seems to not bother the users since we haven't had any reports about errors in the UI or so .. yet it keeps showing up in our logs. Could it be some

Re: Converter for FileUpload

2011-10-07 Thread Martin Grigorov
The difference in FileUploadField from 1.4.x to 1.5.x is that now it supports input type=file multiple/ (HTML5 standards) and it works with ListFileUpload instead of just FileUpload. You need to update your getConverter() impl to expect ListFileUpload On Fri, Oct 7, 2011 at 12:39 PM, Ian Marshall

Re: Community tools

2011-10-07 Thread nino martinez wael
+1, totally agree this is a big plus for me, also I can answer mails on my phone easy.. 2011/10/7 Josh Kamau joshnet2...@gmail.com: I like the mail. Atleast i can get the answers even on my not so smart phone. Josh. On Fri, Oct 7, 2011 at 6:43 AM, Chris Colman

Re: Community tools

2011-10-07 Thread Gaetan Zoritchak
I fully understand the risk of relying on an external and uncontrolled party. The best of breed solution would be to have SO like a Q A for wicket based on an open source implementation like Bert mentionned. For the mailing list, I think the advantage of reading the messages on his phone is

Re: Community tools

2011-10-07 Thread Josh Kamau
On a light note: we can build our version of stackoverflow as a Q/A for wicket. We can build it in wicket and let everyone access the code. We can use it as a demo wicket application. Josh. On Fri, Oct 7, 2011 at 1:40 PM, Gaetan Zoritchak g.zoritc...@moncoachfinance.com wrote: I fully

1.5.1

2011-10-07 Thread nino martinez wael
Hi I get an parse exception on the markup below I did'nt get this in 1.5.0 and backwards and I can't seem to find an missing close tag : !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Strict//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd; html xmlns=http://www.w3.org/1999/xhtml; xml:lang=da

Re: ajax form submit, loading gif and swap panels

2011-10-07 Thread wholalotta
Any comment or documentation to learn how to call jquery function inside of this methot? Thanks -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/ajax-form-submit-loading-gif-and-swap-panels-tp3876326p3881810.html Sent from the Users forum mailing list archive at

Re: 1.5.1

2011-10-07 Thread Sven Meier
wicket:extend Maybe a problem in the parent markup? Sven On 10/07/2011 01:14 PM, nino martinez wael wrote: Hi I get an parse exception on the markup below I did'nt get this in 1.5.0 and backwards and I can't seem to find an missing close tag : !DOCTYPE html PUBLIC -//W3C//DTD

Re: 1.5.1

2011-10-07 Thread nino martinez wael
the parent renders fine in other contexts.. And im also wondering why it fails in 1.5.1 but not 1.5.0 2011/10/7 Sven Meier s...@meiers.net:     wicket:extend Maybe a problem in the parent markup? Sven On 10/07/2011 01:14 PM, nino martinez wael wrote: Hi I get an parse exception on the

Re: 1.5.1

2011-10-07 Thread Matthias Keller
Hi Seems to be right here: wicket:container wicket:id=entranceNameHeader.. You're missing an opening quote Matt smime.p7s Description: S/MIME Cryptographic Signature

Re: ajax form submit, loading gif and swap panels

2011-10-07 Thread manuelbarzi
may you try assembling wiquery to your web-app (http://code.google.com/p/wiquery/). it makes jquery integration trivial in wicket.. On Fri, Oct 7, 2011 at 1:22 PM, wholalotta ardaas...@gmail.com wrote: Any comment or documentation to learn how to call jquery function inside of this methot?

Re: Community tools

2011-10-07 Thread manuelbarzi
it sounds great, but why not fully concentrate on wicket. apache will adopt whatever magic-solution asa it'll be licence compliant, and affordable by resources and directives. for the moment this mailing list has been a very successful machine, and still has much to bring. outside, whatever

Re: 1.5.1

2011-10-07 Thread nino martinez wael
virtual ipod on its way to matt.. Dead on! thanks :) 2011/10/7 Matthias Keller matthias.kel...@ergon.ch: Hi Seems to be right here: wicket:container wicket:id=entranceNameHeader.. You're missing an opening quote Matt

1.5.1 DropDownChoice howto change default text, not working

2011-10-07 Thread nino martinez wael
I cant get the below to work in 1.5.1 (only version I've tried it in for a long time) http://www.mail-archive.com/wicket-user@lists.sourceforge.net/msg10790.html my code: DropDownChoiceEntrance ddEntrance = new DropDownChoiceEntrance(

Re: 1.5.1

2011-10-07 Thread Andrea Del Bene
Hi nino, XmlPullParser has became more strict in Wicket 1.5.1 in order to solve WICKET-3773. Now it complains about not balanced quotes of tag attributes. Maybe we could improve exception message. virtual ipod on its way to matt.. Dead on! thanks :) 2011/10/7 Matthias

Re: 1.5.1

2011-10-07 Thread nino martinez wael
yup that would be really nice. 2011/10/7 Andrea Del Bene adelb...@ciseonweb.it: Hi nino, XmlPullParser has became more strict in Wicket 1.5.1 in order to solve WICKET-3773. Now it complains about not balanced quotes of tag attributes. Maybe we could improve exception message. virtual ipod

Re: CouldNotLockPageException using localized RequestMapper URLs

2011-10-07 Thread Jim Pinkham
Thanks - I did that, and found the culprit was a file upload (that part was okay) which fed into an piece of image resizing code: Graphics2D graphics2D = rescaledImage.createGraphics(); which the stack trace showed was waiting forever on some other AWT init thread. So I just kicked it

RE: 1.5.1

2011-10-07 Thread Jeffrey Schneller
Yes, that would be very nice to have an improved exception message. I ran into this problem as well during a migration to 1.5.1 and it caused lots of wasted time trying to find the problem. On a side note 1.5.1 is awesome. The migration was relatively painless. -Original Message-

Re: Community tools

2011-10-07 Thread Clint Checketts
So what is the best way (official? permanent?) to link to a previous response? In 6 months when someone has a similar question, what is the official way to link to previous answers? Equally, what is the best way to improve those answers if the answer 6 months back worked at that time, but now is

RE: Community tools

2011-10-07 Thread Wilhelmsen Tor Iver
So what is the best way (official? permanent?) to link to a previous response? Link to a posting on Nabble or one of the other mailinglist-aggregators out there perhaps? :) - Tor Iver - To unsubscribe, e-mail:

Re: Community tools

2011-10-07 Thread manuelbarzi
So what is the best way (official? permanent?) to link to a previous response? Link to a posting on Nabble or one of the other mailinglist-aggregators out there perhaps? :) and keep patience while somentity is re-implementing stacko, making it os, waiting it's fully established and tested,

RE: Remove Sort on SortableDataProvider

2011-10-07 Thread Jensen, Bob
Thanks! provider.setSort(null); worked! I had tried: provider.setSort(null, true); which caused a null pointer later on. -Original Message- From: Bertrand Guay-Paquet [mailto:ber...@step.polymtl.ca] Sent: Thursday, October 06, 2011 8:52 PM To: users@wicket.apache.org Subject:

Wicket TinyMCE 1.4.18 fails

2011-10-07 Thread Leszek Gawron
with the message in JS console: /app/resources/wicket.contrib.tinymce.InPlaceEditBehavior/tiny_mce/themes/advanced/editor_template_src.js:128 Uncaught TypeError: Cannot call method 'push' of undefined and it didn't so for 1.4.17. Could anybody confirm this? lg -- Leszek Gawron

Re: Converter for FileUpload

2011-10-07 Thread Ian Marshall
Fantastic, Martin! I have changed the model for my FileUploadField from FileUpload to ListFileUpload and all works fine, without me having to roll my own converter. (I didn't spot that the constructor for FieldUploadField which takes a model now takes a model of type

Wicket ExtJS

2011-10-07 Thread Entropy
So my project has used Wicket (albeit perhaps not well) on it's last couple projects. We are now adopting ExtJS. If I use a page transition style (reloading the browser page in it's entirely each time), I can populate the onReady() in each load, and I only have on Wicket stateful page on the