Re: Wicket/Eclipse/Maven/m2eclipse - HTML files not refreshing

2009-01-18 Thread noon
Which plugins you removed? tauren wrote: That seems consistent with the problem I was having. I removed several plugins from the pom and got things working. Like you, for now I'm leaving adding those plugins back in until another day. Thanks, Tauren On Thu, Jan 15, 2009 at 11:59

What are Behaviors in Wicket?

2009-01-18 Thread HHB
Hey, In easy words, what are Wicket Behaviors? what is their role? Thanks. -- View this message in context: http://www.nabble.com/What-are-Behaviors-in-Wicket--tp21525487p21525487.html Sent from the Wicket - User mailing list archive at Nabble.com.

Re: Wicket/Eclipse/Maven/m2eclipse - HTML files not refreshing

2009-01-18 Thread Tauren Mills
The project that I had troubles with began from the wicket-phonebook codebase about 2 years ago. So my pom had most of the things that were in the wicket-phonebook pom. The pom at the following url was very similar to what I had:

Re: What are Behaviors in Wicket?

2009-01-18 Thread Thomas Mäder
Behaviours are Objects that can participate in the rendering of a component. They serve to extract behaviour (hence the name) that is common to various components and which cannot be accommodated in the inheritance hierarchy. For example, you can add javascript handlers to many html tags, so you

Re: Contributing to Wicket - Client side form validation

2009-01-18 Thread cazoury
Hi, I have finally added the Wicket Yav Integration into the trunk of wicketstuff-core. There is an exemple application provided to test the actual Wicket rules that has been converted to Yav Every feedback is the most welcome and contribution also. It is a first step, but we can make it

Wicket presentation at Bulgarian JUG

2009-01-18 Thread Martin Grigorov
Hi all, I just uploaded the presentation that me and a colleague of mine did last Wednesday at Bulgarian Java user group. The event was quite a success. I hope we refactored some of the JSF supporters :-) The interesting thing about this presentation is that it was made with Wicket itself. Yes,

ModalWindow gotcha!

2009-01-18 Thread Phillip Rhodes
I have figured out why my ModalWindow was not working. Declaring the ModalWindow from a panel did not work. The ModalWindow would appear, but the ModalWindow contents (a panel) would be rendered within the parent panel after the ModalWindow was closed. If I declare the ModalWindow in a

Re: Wicket presentation at Bulgarian JUG

2009-01-18 Thread Peter Thomas
On Sun, Jan 18, 2009 at 8:42 PM, Martin Grigorov martin.grigo...@fredhopper.com wrote: Hi all, I just uploaded the presentation that me and a colleague of mine did last Wednesday at Bulgarian Java user group. The event was quite a success. I hope we refactored some of the JSF supporters

Re: Wicket presentation at Bulgarian JUG

2009-01-18 Thread Cristi Manole
Yeah, absolutely, good stuff. Congrats. I wish we'd be having one presentation like this in Romania too. Cristi Manole On Sun, Jan 18, 2009 at 2:34 PM, Peter Thomas ptrtho...@gmail.com wrote: On Sun, Jan 18, 2009 at 8:42 PM, Martin Grigorov martin.grigo...@fredhopper.com wrote: Hi all,

Re: Wicket presentation at Bulgarian JUG

2009-01-18 Thread Jonathan Locke
very clever! Martin Grigorov-2 wrote: Hi all, I just uploaded the presentation that me and a colleague of mine did last Wednesday at Bulgarian Java user group. The event was quite a success. I hope we refactored some of the JSF supporters :-) The interesting thing about this

Re: Contributing to Wicket - Client side form validation

2009-01-18 Thread Jeremy Thomerson
Carl, Would you mind if I made a few minor changes to your pom files to make this project conform to the standards of the wicketstuff-core projects? Things I noticed are: - yav-parent/yav/pom.xml - artifact ID must be yav rather than wicketstuff-yav - yav-parent/yav-examples/pom.xml - artifact

What the problem with setObject(Component c, Object o)

2009-01-18 Thread robin
private Loop createHeadings() { return new Loop(heading, new PropertyModel(meta, cols)) { public void populateItem(final LoopItem item) { int column = item.getIteration(); String result = ; for (; column = 0; column = column

Wicket Tester

2009-01-18 Thread PSkarthic
Hi I have came to know that wicket has tester, from its features. I don't know how to use it anybody has knowledge about that please guide me. It will be very helpfull to me. Thank you Karthic -- View this message in context: http://www.nabble.com/Wicket-Tester-tp21537981p21537981.html

Re: Wicket Tester

2009-01-18 Thread Jeremy Thomerson
http://www.google.com/search?q=testing+wicket http://www.google.com/search?q=how+to+use+wicket+tester http://cwiki.apache.org/WICKET/testing-pages.html http://cwiki.apache.org/WICKET/unit-test.html On Mon, Jan 19, 2009 at 1:21 AM, PSkarthic kart...@touchpointindia.comwrote: Hi I have

Re: What the problem with setObject(Component c, Object o)

2009-01-18 Thread Steve Flasby
These 2 methods are deprecated in Wicket 1.4, you should use: public void setObject(final T object) public T getObject() instead. Cheers - Steve ro...@focusone.com.np wrote: private Loop createHeadings() { return new Loop(heading, new PropertyModel(meta, cols)) {