Re: Need Wicket Book

2009-08-18 Thread Jeroen Steenbeeke
I realize you asked for freely available information sources, but you really can't go wrong with Wicket in Action: http://manning.com/dashorst/ It isn't that expensive at $45, and you get a PDF copy as well. You can also skip the dead tree version and get just the PDF for $27.50. And I'm not just

Re: Need Wicket Book

2009-08-18 Thread Arie Fishler
Wicket in action! A must have! On Tue, Aug 18, 2009 at 9:26 AM, Jeroen Steenbeeke j.steenbeeke.ml@ gmail.com wrote: I realize you asked for freely available information sources, but you really can't go wrong with Wicket in Action: http://manning.com/dashorst/ It isn't that expensive at $45,

Re: Need Wicket Book

2009-08-18 Thread Jeremy Thomerson
I'll second that. Like so many things, documentation is something that you get what you pay for. -- Jeremy Thomerson http://www.wickettraining.com On Tue, Aug 18, 2009 at 1:26 AM, Jeroen Steenbeekej.steenbeeke...@gmail.com wrote: I realize you asked for freely available information sources,

Re: Need Wicket Book

2009-08-18 Thread Ernesto Reinaldo Barreiro
Well, expensive is a relative term: in the country I come from $27.50 is almost twice the money a developer will receive as payment for a month of hard work;-) Besides that, IMHO, the book is an excellent reading and buying it is a good way to support those who expend so much energy and time

Re: Need Wicket Book

2009-08-18 Thread Major Péter
Yes Wicket In Action is a great book, but there is an another book: Pro Wicket from Karthik Gurumurthy, which could be also helpful. Peter 2009-08-18 08:26 keltezéssel, Jeroen Steenbeeke írta: I realize you asked for freely available information sources, but you really can't go wrong with

Re: Need Wicket Book

2009-08-18 Thread Haulyn R. Jason
I have both Pro Wicket and Wicket in Action. They are all great! 2009/8/18 Major Péter majorpe...@sch.bme.hu Yes Wicket In Action is a great book, but there is an another book: Pro Wicket from Karthik Gurumurthy, which could be also helpful. Peter 2009-08-18 08:26 keltezéssel, Jeroen

Re: Need Wicket Book

2009-08-18 Thread ivilis vytautas.civi...@gmail.com
10 bucks for a month? What country do you come from? Just curious :D cvl Ernesto Reinaldo Barreiro wrote: Well, expensive is a relative term: in the country I come from $27.50 is almost twice the money a developer will receive as payment for a month of hard work;-) Besides that, IMHO, the

RE: Need Wicket Book

2009-08-18 Thread Greven, Jens
I liked the book Enjoy Web Development with Wicket by Kent Ka Iok Tong. You can find it at http://www.agileskills2.org, the download edition is also quite affordable at 19.95 US-$. This book and Wicket in Action kind of complement one another quite well, imho. The edition I bought of Pro

Re: CORRECT portlet+spring+hibernate configuration (Two options, what's right?)

2009-08-18 Thread nino martinez wael
Happy to help, please see further answers below. 2009/8/17 Gonzalo Aguilar Delgado g...@aguilardelgado.com: I have several suggestions. The order of the web filters are important. You could also try with with the wicket spring managed apps, im not sure how that applies. Will check. I

How can i load my css

2009-08-18 Thread Per Newgro
Hi *, i would like to add a css-class to my div to display a background image. So i've added this to css my.css div.myimg { background: url(navi_items.gif) no-repeat; width: 12px; height: 10px; cursor: pointer; } The navi_items.gif is located in - webapp - WEB-INF -

Re: How can i load my css

2009-08-18 Thread Haulyn R. Jason
Hi, I didn't use this style, but I leave my css in resources folder, and use the following code here:add(CSSPackageResource.getHeaderContribution(AbstractWebPage.class, resources/base.css)); everything works well. On Tue, Aug 18, 2009 at 3:58 PM, Per Newgro per.new...@gmx.ch wrote: Hi *, i

Re: Announcing: Scala-Wicket Extensions Project

2009-08-18 Thread Jörn Zaefferer
Hi Antony, is there a website for the project with some documentation? You mention the specification files, but those aren't included in the SNAPSHOT release. So all I have are some not-so-useful SDocs, your hints here and a link to http://technically.us/code/x/the-escape-hatch, which doesn't

Re: How can i load my css

2009-08-18 Thread Per Newgro
Haulyn R. Jason schrieb: Hi, I didn't use this style, but I leave my css in resources folder, and use the following code here:add(CSSPackageResource.getHeaderContribution(AbstractWebPage.class, resources/base.css)); everything works well. Thanks for reply Haulyn, i can't find a

Re: Need Wicket Book

2009-08-18 Thread Gerald Fernando
Thank You Friends for your ideas ThanksRegards, Gerald Anto Fernando On Tue, Aug 18, 2009 at 1:16 PM, Greven, Jens jgre...@pma.de wrote: I liked the book Enjoy Web Development with Wicket by Kent Ka Iok Tong. You can find it at http://www.agileskills2.org, the download edition is also quite

Re: How can i load my css

2009-08-18 Thread Per Newgro
But i'm realy instressted in solving this with 1.3.7. Is there no other way then jumping to 1.4? Cheers Per - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail:

Re: How can i load my css

2009-08-18 Thread Major Péter
I guess, you could do something like this: add(HeaderContributor.forCss(new CompressedResourceReference(((WebRequest) getRequest()).getHttpServletRequest().getContextPath() + /webresources/my.css))); but this isn't a nice way to do it... Upgrading to a newer version has always benefits. ;)

Re: How can i load my css

2009-08-18 Thread Per Newgro
Major Péter schrieb: I guess, you could do something like this: add(HeaderContributor.forCss(new CompressedResourceReference(((WebRequest) getRequest()).getHttpServletRequest().getContextPath() + /webresources/my.css))); but this isn't a nice way to do it... That was my thought to. But it

Does ExternalLink URL encode?

2009-08-18 Thread Roman Uhlig Maxity.de
Just a simple question, I couldn't find any hint on this in the mailing list and the wiki. Is ExternalLink doing some URL encoding with the href param or will I have to do it on my own? Something like: new ExternalLink( id, http://www.mysite.com/page.jsp?title=; +

Re: Does ExternalLink URL encode?

2009-08-18 Thread Jonas
Use the Source, Luke! have a look at ExternalLink#onComponentTag On Tue, Aug 18, 2009 at 12:38 PM, Roman Uhlig Maxity.deroman.uh...@maxity.de wrote: Just a simple question, I couldn't find any hint on this in the mailing list and the wiki. Is ExternalLink doing some URL encoding with the

Re: Does ExternalLink URL encode?

2009-08-18 Thread Steamus
Roman Uhlig Maxity.de wrote: Just a simple question, I couldn't find any hint on this in the mailing list and the wiki. Is ExternalLink doing some URL encoding with the href param or will I have to do it on my own? Something like: new ExternalLink( id,

Re: javascript effects before an ajax call

2009-08-18 Thread Antony Stubbs
Here's the more readable version - corrected with help form Richard at JWeekend... This is the easiest way to do the animation either side of the Wicket replace function that I know of... If someone would like to wrap this up into a nice behaviour for the Scriptaculous wicketstuff library

Shall we have(embed) a swf in wicket component(Panel or in wicket page).

2009-08-18 Thread Gerald Fernando
Hello Friends, Shall we have(embed) a swf in wicket component(Panel or in wicket page). I have swf that shows chart for dynamic data. i want to show my .swf file into wicket page or wicket panel if possible please give me modal code. I need urgent reply -- Thanksregards, Gerald A

Ajax form submits in a Wicket portlet on Liferay

2009-08-18 Thread Richard Gal
Hello I am trying to use Wicket portlets in Liferay (v 5.2.3). The results are promising, however I have stumbled upon the following problem. Could someone help me or comment on it, please? My problem: I have a form with AjaxButton to submit it. The form consists of nothing else but a TextField

Re: Announcing: Scala-Wicket Extensions Project

2009-08-18 Thread Antony Stubbs
Not sure how I missed this response Sorry! No there isn't, there's only the source code, the sample app, the archetype and the specification tests. But creating the Wicketstuff page is in the list of things to do, but it's not that close to the front of the queue unfort. If someone else

Re: Announcing: Scala-Wicket Extensions Project

2009-08-18 Thread Antony Stubbs
My pleasure :) I hope some people enjoying using the useful stuff in there and I hope we get some useful contributions to add to the collection.. I'm sure it will evolve over time as I use it more in our company as well. hmm, faster to write yes, but i don't think faster performing. Definitely

Re: Wicket Job offer

2009-08-18 Thread Haulyn R. Jason
All the things are interesting, but can you share some experience about inject component or model with guice? I am trying Salve solution. On Fri, Aug 14, 2009 at 6:02 PM, Wayne Pope waynemailingli...@googlemail.com wrote: Hello all, We are looking for a long term wicket developer to join our

Dynamic nodes in Tree

2009-08-18 Thread Eyal Golan
Hello, I have a wizard that in the last step I show a tree with the selections made in the previous steps. The wizard uses static steps so actually the last step is built in advance. The problem is that the tree is not updated. For debugging purposes I have in the last step tables that show the

Re: Dynamic nodes in Tree

2009-08-18 Thread Eyal Golan
OK. Found the solution: private IModel createTreeModel() { final IModel model = new AbstractReadOnlyModel() { private static final long serialVersionUID = 1L; @Override public Object getObject() { final Profile profile = (Profile)

Re: Wicket Job offer

2009-08-18 Thread Antony Stubbs
Hi Wayne, What time frame are you looking at for start time? Cheers, Antony Stubbs, sharca.com On 14/08/2009, at 12:02 PM, Wayne Pope wrote: Hello all, We are looking for a long term wicket developer to join our very small company here in Monaco/Nice area. Salary is in the range of 2500 to

Time Component for wicket.

2009-08-18 Thread Raphael Monroe - Leucotron (DES)
Hi guys, I'm looking for a time component for wicket. I know that DateTimePicker but it isn't usefull for my purposes. Maybe, it can be, but I need something in which I can set both hour and minute by arrows (like up/down). Does anybody knows any component like that? Thx, Raphael Monroe

Re: Time Component for wicket.

2009-08-18 Thread Martin Makundi
Time picker.. I've seen some, though not very attractive... http://wicketstuff.org/wicketdojo13/?wicket:bookmarkablePage=%3Aorg.wicketstuff.dojo.examples.timepicker.TimePickerShower And then I have seen 'roller' style time picker..can't remember where that was. ** Martin 2009/8/18 Raphael

Re: Time Component for wicket.

2009-08-18 Thread Eyal Golan
Look at DateTimeField of YUI. Also, in the book WIA there's an example for that. The components are not with the arrows, but do have the hour, minutes fileds Eyal Golan egola...@gmail.com Visit: http://jvdrums.sourceforge.net/ LinkedIn: http://www.linkedin.com/in/egolan74 P Save a tree. Please

Re: Dynamic nodes in Tree

2009-08-18 Thread Eyal Golan
Still have a problem. When I use the IModel instead of the TreeModel, in the constructor, the nodes are not responding to the clicks. Any ideas? Eyal Golan egola...@gmail.com Visit: http://jvdrums.sourceforge.net/ LinkedIn: http://www.linkedin.com/in/egolan74 P Save a tree. Please don't print

Re: Need Wicket Book

2009-08-18 Thread Ernesto Reinaldo Barreiro
I'm from Cuba. I do not live there now but still have friends and family living there... On Tue, Aug 18, 2009 at 9:13 AM, Vytautas C(ivilis vytautas.civi...@gmail.com wrote: 10 bucks for a month? What country do you come from? Just curious :D cvl Ernesto Reinaldo Barreiro wrote: Well,

Re: Need Wicket Book

2009-08-18 Thread James Carman
Well, if you're ever looking for work, just let me know. I can pay you 10x that much! :) On Tue, Aug 18, 2009 at 2:45 AM, Ernesto Reinaldo Barreiroreier...@gmail.com wrote: Well, expensive is a relative term: in the country I come from $27.50 is almost twice the money a developer will receive

Re: How to use Guice to inject Service to LoadableDetachableModel

2009-08-18 Thread Igor Vaynberg
it depends on how you initialize guice. if you are using a servlet context listener then that creates the injector and sticks it into servlet context where you can get it. if you are creating the injector yourself then you have a reference to it. -igor On Tue, Aug 18, 2009 at 7:12 AM, Haulyn R.

Re: Need Wicket Book

2009-08-18 Thread Ernesto Reinaldo Barreiro
Well, maybe you can hire some friends of mine living over there... Right now I do live and work in Spain where the minimal wage is a bit higher;-) Best, Ernesto On Tue, Aug 18, 2009 at 5:39 PM, James Carman jcar...@carmanconsulting.comwrote: Well, if you're ever looking for work, just let me

Re: is there a way to inject service to wicket sortable models?

2009-08-18 Thread Igor Vaynberg
a) use 1.1 jars - link to their maven repo is on the front page under news b) salve is a bytecode instrumentor - that means you have to instrument your classes. there are various ways to do it: eclipse/idea plugin, maven plugin, jvm agent. how to set all this up is on the salve wiki. c) salve has

Re: Announcing: Scala-Wicket Extensions Project

2009-08-18 Thread Antony Stubbs
On 18/08/2009, at 9:30 PM, Jörn Zaefferer wrote: I'll take a look at the archetype. Still, a simple page with some example code would help a lot - Maven archetypes can be quite annoying when the repository isn't directly available. I completely agree, but I don't have time atm to do it. And the

Re: Need Wicket Book

2009-08-18 Thread Marcel Bonnet
2009/8/18 Michael Mosmann mich...@mosmann.de Am Dienstag, den 18.08.2009, 15:32 -0300 schrieb Marcel Bonnet: Wicket in Action is really good, but it doesn't go too depper. If you have some questions, just ask. I would say: visit my blog, but's only in german...

Re: Need Wicket Book

2009-08-18 Thread Marcel Bonnet
2009/8/18 Ernesto Reinaldo Barreiro reier...@gmail.com: Or try to  the questions yourself! Wicket is OpenSource and the source is the best documentation you can ask for;-) You're right, that's why I started to acess the SVN and read the code. What I wanted was clarify that the book is good, but

Re: Need Wicket Book

2009-08-18 Thread Nicolas Melendez
Live Examples + Book + Blog + Source = wicket learning. the book in only one variable there... On Tue, Aug 18, 2009 at 10:35 PM, Marcel Bonnetmarcelbon...@gmail.com wrote: 2009/8/18 Ernesto Reinaldo Barreiro reier...@gmail.com: Or try to  the questions yourself! Wicket is OpenSource and the

OT: Wicket + Blazeds debugger doesnt stop in breakpoints

2009-08-18 Thread Fernando Wermus
Hello all, I am using jetty to launch my app, which is developed with wicket + blazeds. Some days ago I found that the breakpoints I mark in blazeds services are useless. I mean the debugger doesn't stop in them. Do you have any idea what could it be? I am trying to install wtp just for

Re: is there a way to inject service to wicket sortable models?

2009-08-18 Thread Igor Vaynberg
it is possible if you can get a hold of a ConfigurableInjector instance which is usually obtained via InjectorHolder.getInjector(). once you do you can call injector.inject(this) in the constructor of the class and it will be injected. -igor On Tue, Aug 18, 2009 at 6:35 PM, Haulyn R.

Date/Time Validation in Forms

2009-08-18 Thread Arun Gupta
I have a form model defined as: -- cut here -- public class RunlogFormModel implements Serializable { private String month; private String day; private String year; private String distance; private String hour; private String minute; private String second; private

Re: is there a way to inject service to wicket sortable models?

2009-08-18 Thread Haulyn R. Jason
!!!I am so stupid, I didn't check the source of wicket, just image that InjectorHolder keep it's own context with Guice Injector, but it is not. just like Guice, I need to inject(this), but the first, I have to get Injector. I try to use InjectorHolder.getInjector(), but I got null, then I try to

Newbie question: fileupload AJAX progressbar ?

2009-08-18 Thread Ashika Umanga Umagiliya
Greetings all, I am new to Wicket and I used 'UploadProgressBar' to create an AJAX brogressbar for fileupload.(refered example at wicket-library.org ) But when uploading a file, eventhough progreebar showed,theres no activity nor incrementation of the bar I have posted my code, what could be

Re: Shall we have(embed) a swf in wicket component(Panel or in wicket page).

2009-08-18 Thread Gerald Fernando
Nino sorry to say that i dont know that please tell me clear. if possible give some modal code ThanksRegards, Gerald A On Tue, Aug 18, 2009 at 6:45 PM, nino martinez wael nino.martinez.w...@gmail.com wrote: stuff the panel in to the modal window 2009/8/18 Gerald Fernando