Re: [Wicket-user] wicket-stuff contrib-gmap-examples won't run

2006-09-17 Thread Iulian Costan
please co these projects from WICKET_1_2 branch:http://svn.sourceforge.net/viewvc/wicket-stuff/branches/WICKET_1_2/wicket-contrib-gmap-examples/ http://svn.sourceforge.net/viewvc/wicket-stuff/branches/WICKET_1_2/wicket-contrib-gmapthe code in trunk is broken, and i have to make it wicket 2.0

Re: [Wicket-user] How to build wicket 2.0 from svn download

2006-09-17 Thread Martin Funk
Hi Stefan, wicket is nicely set up as a Maven multi module projekt and the parent of all modules may be found in wicket-parent. Build instructions may be found there: https://svn.sourceforge.net/svnroot/wicket/trunk/wicket-parent/README.TXT mvn -Pjdk1.4 clean install should install the Java 1.4

Re: [Wicket-user] How to build wicket 2.0 from svn download

2006-09-17 Thread Martijn Dashorst
Wicket is in 2.0 a Java 5 project, and the projects haven't yet been altered to take advantage of maven's multi module support. I think this will happen somewhere in the beginning of october when I have finished my current chapter for WIA... Martijn On 9/17/06, Martin Funk [EMAIL PROTECTED]

Re: [Wicket-user] Sharing parts of a model between components...

2006-09-17 Thread Johan Compagner
i agree with igor. What does this really gain?How will versioning and then the undo to that version work???johanOn 9/17/06, Erik Brakkee [EMAIL PROTECTED] wrote: One of the things I was thinking of is actually sharing the same CompoundPropertyModel but then requesting a child model of the

Re: [Wicket-user] ModalWindow problems in IE 6

2006-09-17 Thread Matej Knopp
This is really weird. Can you please either check if current svn version helps the problem or provide a quick start application so that I can look at that? From what I can see the response seems to be ok. -Matej Allen James wrote: I've ran into a scenario where I can use the ModalWindow in

Re: [Wicket-user] Sharing parts of a model between components...

2006-09-17 Thread Erik Brakkee
On 9/17/06, Johan Compagner [EMAIL PROTECTED] wrote: i agree with igor. What does this really gain?How will versioning and then the undo to that version work??? Child components will not do versioning. Only the top-level parent will. The child components simply delegate to their parent. Or is

Re: [Wicket-user] Sharing parts of a model between components...

2006-09-17 Thread Erik Brakkee
I just looked a bit at the code for ModelChange.java in wicket 2. I see the problem now. The CompoundPropertyModel is being cloned so if there is another model referring to that model, it will always refer to the wrong version of the model in case an old version of the page is requested. A

Re: [Wicket-user] Sharing parts of a model between components...

2006-09-17 Thread Johan Compagner
What is that ModelRegistry thing?Does that return a model? So models are not attached to components?That won't work in clustering or serialization of the http sessions.The only thing i can think of is having a method on an interface (that extends IModel) that is something like: getChangeState()And

Re: [Wicket-user] Sharing parts of a model between components...

2006-09-17 Thread Erik Brakkee
On 9/17/06, Johan Compagner [EMAIL PROTECTED] wrote: What is that ModelRegistry thing? That is something which I just thought of. The only thing that would manage is a mapping of model to ids. Does that return a model? So models are not attached to components? Models are still attached to

Re: [Wicket-user] SUSPECT: RE: Pro Wicket: Great first book onwicket

2006-09-17 Thread Erik Brakkee
I think the book is a really good introduction to wicket. I actually like it when the author first presents one way of doing something in a big code example and then shows how to do this particular example in a much shorter and cleaner way using another component. I think this is a really smart

Re: [Wicket-user] Sharing parts of a model between components...

2006-09-17 Thread Johan Compagner
how is a model attached to the component if they have to be looked up from somewhere?Where i that lookup being done? And where is the looked up model comming from?remeber Models can also be used over more then one page. i am still looking into a third alternative. And that is doing the

[Wicket-user] Wicket 2, modal window, ListChoice, auto completion

2006-09-17 Thread Stefan Lindner
I successfully cheched out and built wicket from svn. I use a panel with a form that contains - a ListChoice - a AutoCompleteTextField Both works well in a normal page. But in a modal window both do not work: - the ListChoice is not displayed - the AutoCompleteTextField triggers no event when a

Re: [Wicket-user] Wicket 2, modal window, ListChoice, auto completion

2006-09-17 Thread Frank Bille
On 9/17/06, Stefan Lindner [EMAIL PROTECTED] wrote: - the ListChoice is not displayedselect tag had a problem in Model Dialogs in IE. But it should have been solved by now. Try to do a svn update to get the latest model window code.Frank

Re: [Wicket-user] SUSPECT: RE: Pro Wicket: Great first book onwicket

2006-09-17 Thread Gwyn Evans
On 17/09/06, Erik Brakkee [EMAIL PROTECTED] wrote: a component reference: Also the wicket site does not contain a full reference. This is extremely importantant I think because if you want people to find and use the components then they should be documented. The wicket site itself is also not

Re: [Wicket-user] Wicket 2, modal window, ListChoice, auto completion

2006-09-17 Thread Matej Knopp
ListChoice should be visible in modal window from current svn. I can imagine autocomplete not working, perhaps the autocomplete div has lower z-index. Anyway, if you need autocomplete/datepicker/other javascript components that have absolute positioning, you may need to use the modal window in

Re: [Wicket-user] SUSPECT: RE: Pro Wicket: Great first book onwicket

2006-09-17 Thread Gregg Bolinger
That doesn't really contain Erik was stating. At least not that I could find. If you look here, http://myfaces.apache.org/tomahawk/index.html and then on the left there is a Components section with information about each component. That's what Wicket needs for both the core and extension

Re: [Wicket-user] SUSPECT: RE: Pro Wicket: Great first book onwicket

2006-09-17 Thread Martijn Dashorst
If you look here: http://www.wicket-library.com/wicket-examples/compref you can see the components in live action. Perhaps not a complete list, but certainly something worthwile (better than screenshots imo). Each component has a short description and you can also look at the source code using

Re: [Wicket-user] SUSPECT: RE: Pro Wicket: Great first book onwicket

2006-09-17 Thread Eelco Hillenius
On 9/17/06, Gregg Bolinger [EMAIL PROTECTED] wrote: That doesn't really contain Erik was stating. At least not that I could find. If you look here, http://myfaces.apache.org/tomahawk/index.html and then on the left there is a Components section with information about each component. That's

Re: [Wicket-user] SUSPECT: RE: Pro Wicket: Great first book onwicket

2006-09-17 Thread Frank Bille
On 9/17/06, Martijn Dashorst [EMAIL PROTECTED] wrote: At my company I'm trying to convince ourdesigner team to do a new version of the website, but they arereluctant to donate some time.Damn designers. :) Think they own the world and stuff. Just tell them that if they spend that hour on making a

Re: [Wicket-user] SUSPECT: RE: Pro Wicket: Great first book onwicket

2006-09-17 Thread Martijn Dashorst
On 9/17/06, Frank Bille [EMAIL PROTECTED] wrote: Just tell them that if they spend that hour on making a new design they will have my eternal gratitude. Done... :-D Martijn -- Download Wicket 1.2.2 now! New Ajax components: Tree, TreeTable and ModalWindow -- http://wicketframework.org

Re: [Wicket-user] Sharing parts of a model between components...

2006-09-17 Thread Erik Brakkee
On 9/17/06, Johan Compagner [EMAIL PROTECTED] wrote: how is a model attached to the component if they have to be looked up from somewhere?Where i that lookup being done? And where is the looked up model comming from? The model is attached to a component. It just has a unique id which must be

Re: [Wicket-user] SUSPECT: RE: Pro Wicket: Great first book onwicket

2006-09-17 Thread Erik Brakkee
On 9/17/06, Martijn Dashorst [EMAIL PROTECTED] wrote: If you look here:http://www.wicket-library.com/wicket-examples/comprefyou can see the components in live action. Perhaps not a complete list, but certainly something worthwile (better than screenshots imo).Each component has a short description

Re: [Wicket-user] SUSPECT: RE: Pro Wicket: Great first book onwicket

2006-09-17 Thread Eelco Hillenius
On 9/17/06, Martijn Dashorst [EMAIL PROTECTED] wrote: If you look here: http://www.wicket-library.com/wicket-examples/compref you can see the components in live action. Perhaps not a complete list, but certainly something worthwile (better than screenshots imo). Each component has a

[Wicket-user] FW: ModalWindow problems in IE 6

2006-09-17 Thread Allen James
I'm currently using version 1.2.2. I've tried running against the head revision of 1.x out of the Subversion repository, but the issue still remains. One odd thing I noticed, I put the modal window link on my login page and it will come up there as many times as I click on the link before I

Re: [Wicket-user] FW: ModalWindow problems in IE 6

2006-09-17 Thread Allen James
It is working now, but I cannot tell you why. I deleted all my offline cached content and cookies, and once that was done, everything works as advertised. Not being too familiar with the javascript used for the modal window, could there have been some incompatibility between 1.2.1 and 1.2.2

Re: [Wicket-user] Sharing parts of a model between components...

2006-09-17 Thread Igor Vaynberg
When we get an undo we go use our PropertyResolver to set all the properties back into the current model. That only works if all manipulation is done through getters and setters. not exactly true. you can read and set fields, even if they are private (depending on the security manager which 99%

Re: [Wicket-user] Sharing parts of a model between components...

2006-09-17 Thread Igor Vaynberg
On a totally different note, generalizing a bit, what we are trying to do is to version an object-graph (in-memory). Arent' there any tools available that already do this? In particular, all we want to do is to version the page object together with all components, models, and instance variables it

Re: [Wicket-user] Collapsing Bar in Wicket

2006-09-17 Thread ali
On Mon, 22 May 2006 11:54:47 +0430, Ayodeji Aladejebi [EMAIL PROTECTED] wrote: Well here is the file...give it a try again. they are functional now and look at the quick start before writing yours wicket tell can not found package resource [name=.DS_Store ...] so i delete following line