wicketstuff-dojo with wicket 1.4 compatibility

2009-09-27 Thread Elena Stoll
Hi, I have a question: Is there a new version of wicketstuff-dojo, which is compatible with the Wicket 1.4 version. If so, where to find it. Thanks in advance. Elena

Re: avoid setters / getters by using ?

2009-09-27 Thread Martin Makundi
> My intention is how to get rid of these boring setters/getters from service > beans that are usually generated only for the purpose of spring-injection. Well, my solution is: 1. Use abstract static service classes that cannot be instantiated. 2. Won't need spring. ** Martin > > --- On Sun, 9/2

Re: NullPointException in subclass of FormComponentFeedbackBorder

2009-09-27 Thread liny
Hi, I still get exception, even though I just add , I got: WicketMessage: No matching close bracket at position 905 I don't know why it said no close bracket... Altuğ B. Altıntaş wrote: > > > > icon.gif ! > > > > >> >> >> > > Try above . > > Maybe error occurs beca

Re: GridView and refreshing with an ajax call

2009-09-27 Thread Fernando Wermus
I did :( On Fri, Sep 25, 2009 at 7:07 PM, Altuğ B. Altıntaş wrote: > Did you add the component to AjaxRequestTarget > > target.addComponent(yourGridview) > > Also don't forget this : yourGridview.setOutputMarkupId(true); > > A.B.A > > 2009/9/25 Fernando Wermus > > > Hi all,I have an ajaxcli

Re: User name validation - how to check database to find if a name has already been taken?

2009-09-27 Thread Flavius
The AbstractValidator approach is fine, or you can do it the shorter way the Igor showed. Either way, when the page that has the username is submitted, you're going to have to write that record to the database, even if you don't have all the info. The way you wrote the question, I presume you a

Re: avoid setters / getters by using ?

2009-09-27 Thread Christian Beil
Hi David, if you use Eclipse, you can get rid of the getters/setters by using http://projectlombok.org/. Cheers, Christian David Chang schrieb: Martin, Thanks for your input. My intention is how to get rid of these boring setters/getters from service beans that are usually generated only

Re: avoid setters / getters by using ?

2009-09-27 Thread Casper Bang
Use Lombok (http://projectlombok.org/), it allows you to generate setters and getters through annotations: @Getter @Setter private String name; /Casper David Chang wrote: Martin, Thanks for your input. My intention is how to get rid of these boring setters/getters from service beans that a

Re: avoid setters / getters by using ?

2009-09-27 Thread David Chang
Martin, Thanks for your input. My intention is how to get rid of these boring setters/getters from service beans that are usually generated only for the purpose of spring-injection. Cheers! --- On Sun, 9/27/09, Martin Makundi wrote: > From: Martin Makundi > Subject: Re: avoid setters / ge

Re: ModalWindow - Address Is Not Valid

2009-09-27 Thread Jan Grathwohl
Hi Alexander, this one here looks like your problem: https://issues.apache.org/jira/browse/WICKET-2207 But the issue is marked as fixed in JIRA, since end of April. Do you use the latest Wicket version? 2009/9/27 Alexander Shindler > > Hi Jeremy, > > > > Bychance, I found out that it must b

Re: RefreshingView

2009-09-27 Thread garz
ah noo i am wrong, the type parameter is for the items that are used inside, not for the model of the refreshingview itself. my fault, sry. :D though but your answer didnt help me to find that out... ;) MartinM wrote: > > It has getDefaultModelObject etc?? > > ** > Martin > > 2009/9/27 : >>

Re: RefreshingView

2009-09-27 Thread Igor Vaynberg
RefreshingView component does not use its model and therefore does not provide typesafe getters, mostly because it is possible to use any kind of model object with it. -igor On Sun, Sep 27, 2009 at 12:30 PM, wrote: > heyho, > > public abstract class RefreshingView extends RepeatingView has the

Re: avoid setters / getters by using ?

2009-09-27 Thread Martin Makundi
At least in wicket you can access the fields themselves using propertymodels. ** Martin 2009/9/27 David Chang : > Hello, > > I have Wicket+Spring application. It has a service object which has a few DAO > members. I can use Spring's autowiring to avoid mentioning the DAO > dependencies for the

avoid setters / getters by using ?

2009-09-27 Thread David Chang
Hello, I have Wicket+Spring application. It has a service object which has a few DAO members. I can use Spring's autowiring to avoid mentioning the DAO dependencies for the service bean. However, in the Java program for the service bean, I still have to add setters and getters for each DAO memb

Re: RefreshingView

2009-09-27 Thread Martin Makundi
It has getDefaultModelObject etc?? ** Martin 2009/9/27 : > heyho, > > public abstract class RefreshingView extends RepeatingView has the > typeparameter but no public IModel getModel(). can someone add it please > or let me add it, i would do it too, plus setModel(), setModelObject(), > getMo

RefreshingView

2009-09-27 Thread Garz
heyho, public abstract class RefreshingView extends RepeatingView has the typeparameter but no public IModel getModel(). can someone add it please or let me add it, i would do it too, plus setModel(), setModelObject(), getModelObject(). regarz -- Neu: GMX Doppel-FLAT mit Internet-Flatrate + T

Re: [wicket-stuff] project sitemap-xml - empty jar' files

2009-09-27 Thread Andreas Petersson
Hi! being the initial commiter of sitemap-xml i sort of feel responsible for this. i am glad to hear it gathers a the problem is that i did not test if the checkin follows the maven conventions, since i don't use maven, i just tried to follow the conventions given by similar projects, which obv

Doubt with Maven config

2009-09-27 Thread Pedro Sena
Hi Guys, I'm using lolite archetype but I'm having a 'problem' I want to run my tests (JUnit) and keep the Jetty server alive after the tests. Every time that I run my maven tests, it creates a Jetty server that is killed at the end of the process. I'm trying to do the same thing as Wicket in A

Re: Where can I find this Wicket application?

2009-09-27 Thread Maarten Bosteels
http://svn.carmanconsulting.com/public/wicket-advanced/ On Sun, Sep 27, 2009 at 6:16 PM, David Chang wrote: > > Hello, > > I am reading Wicket-related stuff on the net and came across this Wicket > discussion thread: > > http://osdir.com/ml/users-wicket.apache.org/2009-05/msg01196.html > > In the

Where can I find this Wicket application?

2009-09-27 Thread David Chang
Hello, I am reading Wicket-related stuff on the net and came across this Wicket discussion thread: http://osdir.com/ml/users-wicket.apache.org/2009-05/msg01196.html In the response, "my wicket-advanced example application" is mentioned. I would like to know where I can find this application?

Re: NullPointException in subclass of FormComponentFeedbackBorder

2009-09-27 Thread Altuğ B . Altıntaş
! > > > Try above . Maybe error occurs because of hierarchy; i mean it your html; img is child of errorIndicator but i think in your java code site there is hierarchy like this. note: it is just a guess ! Regards. > > 2009/9/27 Anders > Hi, > > I'd like to customiz

Re: google-sitebricks

2009-09-27 Thread Per Lundholm
It seems to be targetting a different category of webapps: " ... that have a lot of textual content and some components that are inserted or modified by Javascript interactively ... ". That opposed to: " ... web UI design using the abstraction of a desktop UI: Events, components and widgets intera

RE: ModalWindow - Address Is Not Valid

2009-09-27 Thread Alexander Shindler
Hi Jeremy, Bychance, I found out that it must be some sort of compatibility problem with Internet Explorer 8. Even though strangely when I run it from the host computer even with IE8 it runs fine, but for some reason other computers on the network using IE8 cannot open the modal windows and

NullPointException in subclass of FormComponentFeedbackBorder

2009-09-27 Thread Anders
Hi, I'd like to customize FormComponentFeedbackBorder class to provide a error icon, so I extend FormComponentFeedbackBorder class and copy FormComponentFeedbackBorder.html from wicket source. I modify FormComponentFeedbackBorder.html to add below: ! If I remove tag from my