Re: [OT] wicket users around the world

2008-12-26 Thread Mathias P.W Nilsson
Munkedal, Sweden. I used wicket for 2 intranet projects and one external project. http://www.boardstore.se http://www.boardstore.se http://www.eddyemery.com http://www.eddyemery.com They both run the same wicket code. -- View this message in context:

Re: [OT] wicket users around the world

2008-12-26 Thread Francisco Diaz Trepat - gmail
Buenos Aires, Argentina. On Fri, Dec 26, 2008 at 9:57 AM, Mathias P.W Nilsson math...@snyltarna.sewrote: Munkedal, Sweden. I used wicket for 2 intranet projects and one external project. http://www.boardstore.se http://www.boardstore.se http://www.eddyemery.com http://www.eddyemery.com

how to start wicketstuff-core's GMAP2

2008-12-26 Thread 新希望软件 -- 俞宏伟
First Sorry for my poor english. I have checked out wicketstuff-core source code, but i do not know how to generate wicket-core jars and example war. I want to run GMAP2 example, and then want to add GMAP2 to my wicket project(now using wicket 1.3.5). thanks.

Re: [OT] wicket users around the world

2008-12-26 Thread Martijn Dashorst
Amersfoort, Netherlands On Fri, Dec 26, 2008 at 2:15 PM, Francisco Diaz Trepat - gmail francisco.diaztre...@gmail.com wrote: Buenos Aires, Argentina. On Fri, Dec 26, 2008 at 9:57 AM, Mathias P.W Nilsson math...@snyltarna.sewrote: Munkedal, Sweden. I used wicket for 2 intranet projects

Re: [OT] wicket users around the world

2008-12-26 Thread Thomas Lutz
Vienna, Austria Martijn Dashorst wrote: Amersfoort, Netherlands On Fri, Dec 26, 2008 at 2:15 PM, Francisco Diaz Trepat - gmail francisco.diaztre...@gmail.com wrote: Buenos Aires, Argentina. On Fri, Dec 26, 2008 at 9:57 AM, Mathias P.W Nilsson math...@snyltarna.sewrote: Munkedal,

DataTable columns markup

2008-12-26 Thread Adriano dos Santos Fernandes
Hi! First, I must say that I'm not a expert on valid HTML, I just tested my markup with the w3c validator. I created a MultiLinePropertyColumn class, that basically have: @Override public void populateItem(ItemICellPopulatorT item, String componentId, IModelT rowModel) {

Confusion with placeholder tags

2008-12-26 Thread David Ojeda
Hello all, I am trying to implement a panel with a table whose tr's are Fragments. I am using ListView in order to generate several table rows, but my rendered table has some markup that I wish to eliminate: 1.- the span wicket:id=caption tag, which I thought would be eliminated when calling

Re: Confusion with placeholder tags

2008-12-26 Thread Martijn Dashorst
setOutputMarkupPlaceholderTag is for ajax refreshes. See setRenderBodyOnly() or use wicket:container in your markup. Martijn On Fri, Dec 26, 2008 at 4:02 PM, David Ojeda dojeda-l...@integra.la wrote: Hello all, I am trying to implement a panel with a table whose tr's are Fragments. I am

Re: [OT] wicket users around the world

2008-12-26 Thread Jérémy Bogatirsky
Paris, France 2008/12/26 Thomas Lutz mat...@gmx.at: Vienna, Austria Martijn Dashorst wrote: Amersfoort, Netherlands On Fri, Dec 26, 2008 at 2:15 PM, Francisco Diaz Trepat - gmail francisco.diaztre...@gmail.com wrote: Buenos Aires, Argentina. On Fri, Dec 26, 2008 at 9:57 AM, Mathias

Re: how to start wicketstuff-core's GMAP2

2008-12-26 Thread Jeremy Thomerson
Do you have maven installed? If so, it should just be like this: svn co https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicketstuff-core cd wicketstuff-core mvn -N clean install cd gmap2-parent mvn clean install cd gmap2-examples mvn jetty:run Now browse

Re: WebPage for serving binary image data

2008-12-26 Thread smallufo
Hi , thank you for replying. 2008/12/26 Jeremy Thomerson jer...@wickettraining.com Then, you can include it in your page: JAVA: add(new Image(img, new ResourceReference( WicketApplication.IMAGE_KEY))); HTML: img wicket:id=img / http://localhost:8080/foo

Re: WebPage for serving binary image data

2008-12-26 Thread Jeremy Thomerson
It's not a WebPage because you're not serving a page - it is a mounted resource. Why do you want to force it to be a page? It's a bookmarkable resource - which is what you're serving. The type is set by DynamicImageResource - look in getResourceStream or getResourceState. On Fri, Dec 26, 2008

Re: [OT] wicket users around the world

2008-12-26 Thread Ryan
Boise, ID - Enjoying the cold weather and snow! -Ryan On Thu, Dec 25, 2008 at 11:27:19AM -0800, Jonathan Locke exclaimed: Seattle, WA USA i just finished writing a foreword for a Japanese book on Wicket i'm constantly amazed to see how far Wicket is spreading in the world. i've been invited

Re: how to start wicketstuff-core's GMAP2

2008-12-26 Thread 新希望软件 -- 俞宏伟
now, the GMAP2 example works, thanks. but i found that wicketstuff-push example can not works. i found that the web.xml file of wicketstuff-push has some problem. the web.xml content in example war file as follow: ?xml version=1.0 encoding=UTF-8? !DOCTYPE web-app PUBLIC -//Sun Microsystems,

Re: WebPage for serving binary image data

2008-12-26 Thread smallufo
Thank you, it works ! Though I am not sure why ThreadLocal is needed here ... Anyway , the solution is much pretty than WebPage. BR -- 2008/12/27 Jeremy Thomerson jer...@wickettraining.com It's not a WebPage because you're not serving a page - it is a mounted resource. Why do you want to