Re: [Wicket-user] NoClassDefFound: log4j.Category

2006-05-05 Thread Gwyn Evans
I don't know the answer off-hand, but recognise the problem - You're getting caught up in some issues involving logging, common-logging & class-loading... See http://www.qos.ch/logging/classloader.jsp for a detailed discussion on the subject - Good luck! I think my quickest fix when I came acro

Re: [Wicket-user] Wicket book

2006-05-01 Thread Gwyn Evans
One thing that often gets overlooked is the wicket-examples module/project, which is either available as a download (http://sourceforge.net/project/showfiles.php?group_id=119783&package_id=138752) or live at http://www.wicket-library.com/wicket-examples/, although the live is based on the last maj

[Wicket-user] Free Maven2 book

2006-04-25 Thread Gwyn Evans
Just as an aside, if there's anyone out there who's interested in Maven2, (which is the Wicket-standard build method), there's a very useful free eBook available from http://www.mergere.com/m2book_download.jsp /Gwyn --- Using Tomcat but need to

Re: [Wicket-user] HelloWorldApplication won't show index page

2006-04-23 Thread Gwyn Evans
eco <[EMAIL PROTECTED] > wrote: > > > > > > > > > > Hi Gwyn > > > > > > > > > > I've just installed Jetty 5.1 and tried the application with it, and > still nothing. > > > > >

Re: [Wicket-user] Re: Wicket & simple DB components?

2006-04-23 Thread Gwyn Evans
f. Or strip out the add > & delete code and you have something really short, but it's a brick. ;) > > Nathan > > Gwyn Evans wrote: > > Just looking to see if we need to fill in any gaps in the docs/wiki > > with regards to DB interactions, which stills seems a

Re: [Wicket-user] HelloWorldApplication won't show index page

2006-04-22 Thread Gwyn Evans
Get rid of the public Session newSession() { // TODO Auto-generated method stub return null; } in HelloWorldApplication.java, as with 1.2 at least, that causes a NPE in the WebApplication class. On a more general note, I wonder if you switched to t

Re: [Wicket-user] Powerful wicket sample

2006-04-22 Thread Gwyn Evans
Or one of the Databinder examples? /Gwyn On 22/04/06, Johan Compagner <[EMAIL PROTECTED]> wrote: > hmm but you do need 1.2 for that > > > On 4/22/06, Johan Compagner <[EMAIL PROTECTED]> wrote: > > > > just build the petstore application ;) > > > > i think the most WOW factor has some pages with p

[Wicket-user] Wicket & simple DB components?

2006-04-21 Thread Gwyn Evans
Just looking to see if we need to fill in any gaps in the docs/wiki with regards to DB interactions, which stills seems a bit unclear in places, to me at least (- that could just my not being experienced with Hibernate, though...) We've got the wicket-phonebook app (Spring/Hibernate) & DataBinder

Re: [Wicket-user] RC2 - still have javascript errors

2006-04-21 Thread Gwyn Evans
Just as an aside, to the best of my knowledge, this isn't something that's new/changed in 1.2, hence nothing in any transition notes - this is been there right from the start, but maybe it's more apparent now there tends to be more to Wicket than the basic servlet, if you see what I mean. /Gwyn O

Re: Re[2]: [Wicket-user] FrameworkSettings.getVersion() seems to be buggy

2006-04-12 Thread Gwyn Evans
d a few other users, > are using wicket.jar. Replying "n/a" if not using the jar is ok for > me. And as long as unit tests don't suffer, and I think they don't, > than > > +1 for MANIFEST.MF > > Juergen > > On 4/13/06, Gwyn Evans <[EMAIL PROTECTED]&

Re: Re[2]: [Wicket-user] FrameworkSettings.getVersion() seems to be buggy

2006-04-12 Thread Gwyn Evans
Anyone for or against this? Pro: Will provide the version from the MANIFEST.MF in the jar file. Con: Only provides the correct value when Wicket is running from a JAR. /Gwyn On 31/03/06, Gwyn Evans <[EMAIL PROTECTED]> wrote: > I suspected that might be the case with the test - could in

Re: [Wicket-user] bind Map to DropDownChoice

2006-04-12 Thread Gwyn Evans
The current equivalent is line 305, i.e. protected void onComponentTagBody(final MarkupStream markupStream, final ComponentTag openTag) { List choices = getChoices(); final AppendingStringBuffer buffer = new AppendingStringBuffer((choices.size() * 50) + 16); getChoices() is returning null the

Re: [Wicket-user] bind Map to DropDownChoice

2006-04-12 Thread Gwyn Evans
On 12/04/06, Vincent Jenks <[EMAIL PROTECTED]> wrote: > OK, I did this exactly how you showed me here... No you didn't - In your model you've got "protected Object load()" from somewhere, whereas what Johan said was "public Object getObject(final Component component)" /Gwyn and I'm still getting

Re: [Wicket-user] View from 30,000 feet of Wicket infrastructure

2006-04-10 Thread Gwyn Evans
On 10/04/06, Dave Johnson <[EMAIL PROTECTED]> wrote: > What are some good references that clearly explain the various levels of > software I encounter, such as Linux, Tomcat, Jetty, Hibernate, PHP, > MySQL and all the rest, and whether they're on the local machine or the > remote server? And whic

Re: Re[2]: [Wicket-user] FrameworkSettings.getVersion() seems to be buggy

2006-03-31 Thread Gwyn Evans
ead on the dev list that class.forName() is frowned upon, > because of classloader issues. > > Martijn > > > On 3/31/06, Gwyn Evans <[EMAIL PROTECTED]> wrote: > > Maven already does that (take a bow, Martijn) so this seems to be a > > no-cost change. > > > >

Re: [Wicket-user] Problem migrating the application to the new version of Wicket.

2006-03-31 Thread Gwyn Evans
yet updated the main project page, which still refers to CVS.) /Gwyn On 31/03/06, Dipu <[EMAIL PROTECTED]> wrote: > Thanks Gwyn > can you please give me the access details of the SVN repository > > Thanks > Dipu > - Original Message - > From: "Gwyn Evans&quo

Re: [Wicket-user] onAttach() with ajax

2006-03-31 Thread Gwyn Evans
head in cvs, svn analogous would be i > checked it into trunk. > > > -Igor > > > > On 3/31/06, Gwyn Evans <[EMAIL PROTECTED]> wrote: > > > Surely SVN's HEAD is exactly the same as CVS's HEAD, in that they both > refer to the latest revision in t

Re: [Wicket-user] Problem migrating the application to the new version of Wicket.

2006-03-31 Thread Gwyn Evans
Dipu, Just to flag that the latest code is in SVN, not CVS anymore. /Gwyn On 31/03/06, Juergen Donnerstag <[EMAIL PROTECTED]> wrote: > You are using markup inheritance (wicket:extend). With markup > inheritance the markups are merged. Until recently the header regions > were merged into a single

Re: Re[2]: [Wicket-user] FrameworkSettings.getVersion() seems to be buggy

2006-03-31 Thread Gwyn Evans
Maven already does that (take a bow, Martijn) so this seems to be a no-cost change. The current manifest contains the following... Manifest-Version: 1.0 Archiver-Version: Plexus Archiver Created-By: Apache Maven Built-By: gwyeva1 Build-Jdk: 1.4.2_09 Extension-Name: wicket Specification-Title: Wic

Re: [Wicket-user] onAttach() with ajax

2006-03-31 Thread Gwyn Evans
/wicket > > then under wicket we have > > wicket/branches > wicket/labels > wicket/trunk > > so trunk is analogous to cvs head > > -Igor > > > > On 3/29/06, Gwyn Evans <[EMAIL PROTECTED]> wrote: > > > Except it's more complex than

Re: [Wicket-user] onAttach() with ajax

2006-03-30 Thread Gwyn Evans
Except it's more complex than that, in that svn still has HEAD for the revisions, with trunk just being the conceptual root from which branches split. /Gwyn On 29/03/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > head is for cvs, trunk is for svn :) > > -Igor > > > > On 3/29/06, Arto Arffman <[EM

Re: [Wicket-user] FrameworkSettings.getVersion() seems to be buggy

2006-03-30 Thread Gwyn Evans
I thought we were going to be reading this from the MANIFEST.MF in the wicket jar? /Gwyn On 30/03/06, cowwoc <[EMAIL PROTECTED]> wrote: > > If it is internal, why read it from a property file at all? Why isn't > this hard-coded into the code? > > Gili ---

Re: [Wicket-user] users: your opinions please! (was: feedback messages)

2006-03-27 Thread Gwyn Evans
As Igor said, these is the feedback levels - See http://www.wicket-library.com/wicket-examples/forminput for examples of them in use when you submit valid & invalid data. /Gwyn On 26/03/06, David Leangen <[EMAIL PROTECTED]> wrote: > > I generally use commons logging. > > I understand that some of

Re: [Wicket-user] RSS feed for each change on WIKI ?

2006-03-27 Thread Gwyn Evans
If you go to the "Recent Changes" page (http://www.wicket-wiki.org.uk/wiki/index.php/Special:Recentchanges), you should see "rss" & "atom" links in the 'Toolbox' on the left. i.e. http://www.wicket-wiki.org.uk/wiki/index.php?title=Special:Recentchanges&feed=rss & http://www.wicket-wiki.org.uk/w

Re: [Wicket-user] Wicket / Databinder issue

2006-03-22 Thread Gwyn Evans
On 21/03/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > if you want an example of a wicket+spring+hibernate app look at > wicket-phonebook in wicket stuff cvs. i think more people here have > experience with that setup so you will be able to find more help. > > -Igor Just as an aside, it's also at

Re: [Wicket-user] Error editing wicket wiki

2006-03-19 Thread Gwyn Evans
And fixed as of a couple of hours ago... /Gwyn On 19/03/06, Gwyn Evans <[EMAIL PROTECTED]> wrote: > Nothing back yet, but note that despite the message, the edit actually > works... > > /Gwyn > On 19/03/06, Gwyn Evans <[EMAIL PROTECTED]> wrote: > > Hi, > &g

Re: [Wicket-user] Error editing wicket wiki

2006-03-19 Thread Gwyn Evans
Nothing back yet, but note that despite the message, the edit actually works... /Gwyn On 19/03/06, Gwyn Evans <[EMAIL PROTECTED]> wrote: > Hi, > Thanks for flagging the issue - it looks as if there's a problem > with the hosted DB, so I've raised an issue with the host

Re: [Wicket-user] Error editing wicket wiki

2006-03-19 Thread Gwyn Evans
Hi, Thanks for flagging the issue - it looks as if there's a problem with the hosted DB, so I've raised an issue with the hosting company - will post when more info available... /Gwyn On 18/03/06, Timo Stamm <[EMAIL PROTECTED]> wrote: > Hi, > > I got the following message when trying to edit th

Re: [Wicket-user] Difference between Panel and Border

2006-03-16 Thread Gwyn Evans
Looks like it's from http://www.wicket-wiki.org.uk/wiki/index.php/Panels_and_borders if you want to edit it! /Gwyn On 17/03/06, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > The description is a bit whacky. A panel is a container that replaces > any contents. I.e. you can draw a box on your scree

Re: [Wicket-user] Re: Snapshots at some maven2 repo?

2006-03-13 Thread Gwyn Evans
s, including source attachments. I'll keep > uploading future betas, but no snapshots. > > Nathan > > Gwyn Evans wrote: > > Looks to have resulted in > > http://www.ibiblio.org/maven2/wicket/wicket/1.2-beta1/ > > /Gwyn > > > > On 12/03/06, Martijn Da

Re: [Wicket-user] Snapshots at some maven2 repo?

2006-03-12 Thread Gwyn Evans
Looks to have resulted in http://www.ibiblio.org/maven2/wicket/wicket/1.2-beta1/ /Gwyn On 12/03/06, Martijn Dashorst <[EMAIL PROTECTED]> wrote: > A search on the maven issues list revealed the following issue which is > closed by now. > > http://jira.codehaus.org/browse/MAVENUPLOAD-775 > > Martijn

Re: [Wicket-user] Wicket Quickstart + OSGi

2006-03-11 Thread Gwyn Evans
Or http://incubator.apache.org/felix/ On 11/03/06, Gwyn Evans <[EMAIL PROTECTED]> wrote: > By the way, that Felix URL should be > http://incubator.apache.org/projects/felix.html > > /Gwyn > On 08/03/06, Alex Karasulu <[EMAIL PROTECTED]> wrote: > > Eelco Hille

Re: [Wicket-user] Wicket Quickstart + OSGi

2006-03-11 Thread Gwyn Evans
By the way, that Felix URL should be http://incubator.apache.org/projects/felix.html /Gwyn On 08/03/06, Alex Karasulu <[EMAIL PROTECTED]> wrote: > Eelco Hillenius wrote: > > Though felix is interesting too because we have several people using > > it and not everyone uses Eclipse (including the com

[Wicket-user] Wiki content updates

2006-03-10 Thread Gwyn Evans
Hi, Just flagging a few updates to the Wiki - A page on the Maven2 Jetty6 Plugin (http://www.wicket-wiki.org.uk/wiki/index.php/Maven_jetty6_plugin) - A page on creating a custom component (http://www.wicket-wiki.org.uk/wiki/index.php/Create_custom_component) from Eelco's posting elsewhere - A

Re: [Wicket-user] Introduction to Wicket

2006-03-09 Thread Gwyn Evans
Hi - Nice writeup. One thing is that the IRC channel most seem to hang out on is "##wicket", not "#wicket" (Dont't ask...) /Gwyn On 09/03/06, Guillermo Castro <[EMAIL PROTECTED]> wrote: > Hey guys, > > Feast your eyes (and share your comments) on the article I wrote about > Wicket: > > http://j

Re: [Wicket-user] Verbosity URL issue

2006-03-09 Thread Gwyn Evans
It's a 1.2 feature but it's not particularly well-documented at the moment. There's some code in wicket-examples/niceurl in CVS and there's been a little mention on the mailing list (search for "mount" or "mountBookmarkablePage") but I've not had a chance to try using it myself, so that's about th

Re: [Wicket-user] Get version of Wicket from program

2006-03-07 Thread Gwyn Evans
One way I've heard of is to do something along the lines of:- URL url = getClass().getResource( "/wicket/SomeWicketClass.class"); Now url is something like jar:file:/path/to/the/jar!/wicket/SomeWicketClass.class Now you have to simply strip off the !/wicket/... part and replace with !/META-INF/

Re: [Wicket-user] Re: Refreshing dynamic images

2006-03-01 Thread Gwyn Evans
On 01/03/06, Anders Peterson <[EMAIL PROTECTED]> wrote: > 3) "Set the headers on the response": You mean some header that tells > the browser(s) not to cache the page - is there a standard for that? Quite a few, all covering different aspects of your problem! :-) > I have no idea which browsers

Re: [Wicket-user] Subversion available for test

2006-02-25 Thread Gwyn Evans
quot; i can check out other > https projects just fine. > > i am not logged in so this is an anonymous attempt. > > -Igor > > > > On 2/24/06, Martijn Dashorst <[EMAIL PROTECTED]> wrote: > > I'll report it to sf.net staff > > > > > > On 2/24/0

Re: [Wicket-user] Subversion available for test

2006-02-24 Thread Gwyn Evans
Hmm indeed - I just pulled the current CVS tarball & the last changes in that are from the 24/01/2006 - There doesn't seem to be any general issue that I could see being raised against SF, so it could be project-specific... /Gwyn On 24/02/06, Martijn Dashorst <[EMAIL PROTECTED]> wrote: > Hmm... >

Re: [Wicket-user] Wicket Requirements?

2006-02-23 Thread Gwyn Evans
It's not really important, but do you know off-hand if there are any 1.4-specific features used? Just wondering if it would build under 1.3 - will have to try it some time... /Gwyn On 23/02/06, Martijn Dashorst <[EMAIL PROTECTED]> wrote: > java 1.4 > any servlet container from 2.3 and up > > Mar

Re: [Wicket-user] Post 1.2 roadmap

2006-02-15 Thread Gwyn Evans
This is what seems the safest to me... - v1.2 : Stop adding features & RC/Release it :-) - v1.3 : v1.2 + Constructor Change + /maybe/ minimal other (ajax?) changes... (Try *really* hard not to feature-creep!) - v2.0 : Requies Java 1.5 (Try to release sometime before Java 1.6 ships!) /Gwyn On 14/

Re: [Wicket-user] Another Nice Tutorial on Wicket

2006-02-07 Thread Gwyn Evans
Now added to the wiki links, thanks... /Gwyn On 07/02/06, Ayodeji Aladejebi <[EMAIL PROTECTED]> wrote: > I am not sure it is referenced on the wicket wiki but i think it is good > intro on wicket as well. > http://ensode.net/wicket_first_look.html > > > -- > "Life is full of risk, take it or dont

Re: [Wicket-user] wicket library abused

2006-01-27 Thread Gwyn Evans
Yes - it was just when I did set it up, I think that you & I were the only Wiki users! It's not been left for any reason, just until recently I'd not appreciated that admins got any extra facilities that were actually needed... The main thing I need to know is the Wiki usernames - I've added Jurg

Re: [Wicket-user] wicket library abused

2006-01-27 Thread Gwyn Evans
You do need membership! Unfortunately, the bot's are now able to automatically look for the "Create Account" options & to do so - There's some attempt at edit verification in place, which is catching some of it, but it's not getting it all... /Gwyn On 26/01/06, Frank Silbermann <[EMAIL PROTECTED

Re: [Wicket-user] How to format date String in textfield?

2006-01-19 Thread Gwyn Evans
Hi, I'd guess that your two approaches are either to change the model, where you'd need to have your "String getCurrentDateTime()" return the formatted string, or change the component by adding a DateToStringConverter, in the same sort of way as shown at the end of http://www.wicket-wiki.org.uk/wi

Re: [Wicket-user] IModel

2006-01-19 Thread Gwyn Evans
The only downside is that posts like that might get me popping up & asking if you fancy consolidating your comments into a page on the Wiki? I've done a cut & paste to http://www.wicket-wiki.org.uk/wiki/index.php/Using_Models but it needs a bit of tweaking before it's linked from anywhere 'public'

[Wicket-user] Wiki update

2006-01-19 Thread Gwyn Evans
Just for info, I've added some code (http://www.ioerror.us/software/bad-behavior/) to the Wiki to try & trap the link spam that we're periodically getting there. Hopefully you should see no effect in normal use, but if anyone does have problems, please contact me with your IP & the date/time it oc

Re: [Wicket-user] Project to bridge Wicket to Hibernate: Databinder

2006-01-11 Thread Gwyn Evans
Hi, My suggestion would be that we could do with somewhere on the Wiki that highlights this (& the Wicket-Stuff wicket-phonebook project) as jump-start projects for DB-related web-apps... /Gwyn On 11/01/06, Nathan Hamblen <[EMAIL PROTECTED]> wrote: > Wicketeers, > > I've started a small projec

[Wicket-user] Wiki status

2006-01-09 Thread Gwyn Evans
Hi, The wiki's temporarily down as the hosting server's undergoing an unplanned outage - See the status for "lothos.34sp.com" at http://status.34sp.com/ for updates. /Gwyn --- This SF.net email is sponsored by: Splunk Inc. Do you grep through

Re: [Wicket-user] FYI: Wiki Spam

2005-12-28 Thread Gwyn Evans
Thanks. We've had a couple of instances recently... I'll have to see if there's any alternative to having to have one of the Dev's 'OK' any new accounts... /Gwyn On 28/12/05, Stefan Matthias Aust <[EMAIL PROTECTED]> wrote: > It seems that the Wicket Wiki got spamed recently. Search for > contrib

Re: [Wicket-user] Wiki problem

2005-12-10 Thread Gwyn Evans
Sorry about the delay on this, I was working abroad & didn't notice the issue. What happened is that the hosting provider upgraded to PHP V4.4.1, which broke the MediaWiki output handling. It was fixed in the latest MediaWiki release but I'd not then installed that, although I've done so now...

Re: [Wicket-user] Wicket stuff status

2005-10-14 Thread Gwyn Evans
There's some information on the Wiki at http://www.wicket-wiki.org.uk/wiki/index.php/Wicket-Stuff which might help, although it's not up-to-date. /Gwyn On 14/10/05, Eduardo Rocha <[EMAIL PROTECTED]> wrote: > About wicket-stuff: > > - What is the status of wicket-library? I tried to build with ma

Re: [Wicket-user] Re: Standard for database integration? (Please!)

2005-10-13 Thread Gwyn Evans
of 1.5 so it should work > on 1.4 sdk > > Could you send me a patch for the javadoc or ask oen of the core devels for > cvs access. > > Thanks, > -Igor > > > > -Original Message- > > From: [EMAIL PROTECTED] > > [mailto:[EMAIL PROTECTED] On Behalf Of &

Re: [Wicket-user] Re: Standard for database integration? (Please!)

2005-10-11 Thread Gwyn Evans
Coincidentally, I've just got to the stage of having added some Javadocs and a couple of comments to that! The Javadocs are up at http://javaguy.co.uk/phonebook/ with the updated source in http://javaguy.co.uk/phonebook/src.zip (as I'm not actually a committer in Wicket-Stuff!) /Gwyn On 11/10/0

Re: [Wicket-user] Standard for database integration? (Please!)

2005-10-08 Thread Gwyn Evans
> > There is absolutely zero doc and the html is pretty plain, but you did > mention you will take care of that :) > > Thoughts/ideas/improvements > > > -Igor > > > > > -Original Message- > > From: [EMAIL PROTECTED] > > [mailto:[EMA

Re: [Wicket-user] Standard for database integration? (Please!)

2005-10-07 Thread Gwyn Evans
g to use hibernate/spring/wicket combo and I can probably throw it > together w/out the javadoc and pretty html. Maybe you can pick it up from > there. > > -Igor > > > > -Original Message- > > From: [EMAIL PROTECTED] > > [mailto:[EMAIL PROTECTED] On Behalf

Re: [Wicket-user] Standard for database integration? (Please!)

2005-10-07 Thread Gwyn Evans
I tend to agree with Nathan, in that there does seem to be a lot of odd parts dotted around... Maybe they all hook together, but I suspect that only if you know what you need can you pull the right bits together... Personally, I'm not familiar with Hibernate, so don't really know what I'm looking

Re: [Wicket-user] Wicket 1.1-rc2 available for testing!

2005-10-07 Thread Gwyn Evans
ed when checkAccess() returns > > > false. Issue: > > >1290352. Thanks to Phil Kulak. > > >- DatePicker fails when used multiple times in > > > the same page Issue: > > >1290843. Thanks to Ralf Ebert. > > >- Buttons with empty valu

Re: [Wicket-user] JavaScript Rich Text Editors and Wicket

2005-10-04 Thread Gwyn Evans
I'm not aware of anything on the Wiki being removed - certainly nothing's been removed by the developers to 'hide' anything. The two topics that look most likely to be where you'd have seen a component are http://www.wicket-wiki.org.uk/wiki/index.php/Consistent_page_layout_using_borders and http:

Re: [Wicket-user] Typical use case problem

2005-10-04 Thread Gwyn Evans
a good debugger) > > > On 10/3/05, Nick Heudecker <[EMAIL PROTECTED]> wrote: > > Yeah, that's what I'm getting at. I usually write a lot of code for the > Page and then make lots of little tweaks. Redploying within IDEA each time > is tiring. > > > >

Re: [Wicket-user] Typical use case problem

2005-10-03 Thread Gwyn Evans
If you mean having the Servlet engine detect changes to .java files & reload them, I haven't done it for Wicket, but I used to use Resin to do that in the past... On 02/10/05, Nick Heudecker <[EMAIL PROTECTED]> wrote: > Any thoughts about putting in a compiling class loader to save time when > dev

Re: [Wicket-user] wicket.model.IModel

2005-09-17 Thread Gwyn Evans
No worries - Personally, I think IModel should be IModelWrapper, as to my mind, the user's ModelObject is the traditional 'model'. Anyway, too late now, I think! Check out CompundPropertyModel too, which is effectively PropertyModel with defaults (although I'm probably doing PropertyModel an inju

Re: [Wicket-user] render strategies

2005-09-17 Thread Gwyn Evans
On 17/09/05, Alexandru Popescu <[EMAIL PROTECTED]> wrote: > #: Johan Compagner changed the world a bit at a time by saying on 9/16/2005 > 11:50 AM :# > > > > But with not sticky session cluster environments can only really use setting > > 1. > > > > Can you explain more of what a sticky/non-stic

Re: [Wicket-user] render strategies

2005-09-16 Thread Gwyn Evans
Thanks, Johan, I've grabbed that for the wiki! http://www.wicket-wiki.org.uk/wiki/index.php/Render_strategies /Gwyn On 16/09/05, Johan Compagner <[EMAIL PROTECTED]> wrote: > Action part is the part where the listeners are being called (lets say the > Swing Action.actionPerformed() method) > >

Re: [Wicket-user] how to use dropdownchoice

2005-09-16 Thread Gwyn Evans
I wouldn't have thought so, as there should be an exception thrown during the rendering in that case... I'd suggest trying to simplify it down by stages seeing how far you can get towards a single dropdown in a form, while the error still persists - if nothing else, you might end up with an exampl

Re: [Wicket-user] How to disable a form component ?

2005-09-13 Thread Gwyn Evans
On 13/09/05, Johan Compagner <[EMAIL PROTECTED]> wrote: > It is a pitty a browser doesn't just post the value (at least that is what > happens?) If that was a question, I'd just mention that using "http://www.tipjar.com/cgi-bin/test"; as the form action/destination can sometimes be useful to chec

Re: [Wicket-user] Updating the choices for a DropDownChoice element?

2005-09-12 Thread Gwyn Evans
09/05, Johan Compagner <[EMAIL PROTECTED]> wrote: > just have the model of the choices for the second component depend on the > first components selection (a model in model) > Then you are doing it completely in the data layer. > > > On 9/12/05, Gwyn Evans <[EMAIL PROTECTE

[Wicket-user] Updating the choices for a DropDownChoice element?

2005-09-12 Thread Gwyn Evans
I've got two drop-down choices, with the choices available in the second depending on the selected value of the first. Is there a way to change the list used by the second component, or is it just a matter of replacing it completely via replace() from form's onSubmit(), for example? /Gwyn -

Re: [Wicket-user] Wicket + Spring + Hibernate

2005-09-12 Thread Gwyn Evans
I've not used it myself (as it needs JDK 5) but I think that the Wicket-Stuff wicket-contrib-examples-hibernate-3 module might be a good starting point for that combination. See http://wicket.sourceforge.net/wiki/index.php/Wicket-Stuff for info on how to access the CVS repositry there. /Gwyn O

Re: [Wicket-user] Re: Wicket Tools

2005-09-12 Thread Gwyn Evans
Yes - From what I hear, the IDEA PlugIn development environment remains one where it's not straight-forward to determine what needs to be done... In this case, I'm still not sure if the additional integration/help that the plugin could provide over just running Jetty via the Start class would repa

Re: [Wicket-user] Input Field returns null

2005-09-11 Thread Gwyn Evans
Are you by any chance using Wicket set as the root servlet, i.e. mapping it's servlet to the "/*" url-pattern? If so, that was a bug that should be fixed in 1.1rc1. /Gwyn On 11/09/05, Fred Astaire <[EMAIL PROTECTED]> wrote: > Hello ! > > I am newbie to Wicket, just figuring out how stuff works.

[Wicket-user] SourceForge issues with their DBs and thus the Wiki...

2005-09-11 Thread Gwyn Evans
SF are having more problems so the Wiki's fairly broken - I'm currently trying to take a copy of the data & will the set it up on a external hosted server once I can point one of my domains to it (24-48 hours, apparently)... /Gwyn --- SF.Net em

Re: [Wicket-user] Re: Datepicker Madness again

2005-09-10 Thread Gwyn Evans
05, Ali Zaid <[EMAIL PROTECTED]> wrote: > Guys, You are my heros!!! > > I have only one servlet for sure :). I made the change that my big hero > "Gwyn Evans" suggested, and all works now, instead of "/" I changed it to > "/application/*" with a re

Re: [Wicket-user] form table with variable editable fields

2005-09-09 Thread Gwyn Evans
Have you investigated the alternative option of using the "read-only" or "disabled" attributes on your input fields? When it's back, www.cs.tut.fi/~jkorpela/forms/readonly.html has some examples of their use and appearance. Other than that, Igor's suggestions of panels might be the easiest approac

Re: [Wicket-user] Datepicker Madness again

2005-09-09 Thread Gwyn Evans
If there's any chance you can switch to a "/app/*" url-mapping, you might well find that both will then work - I came across something that sounds like this recently (see http://sourceforge.net/tracker/index.php?func=detail&aid=1284029&group_id=119783&atid=684975) but while I've not got a fix, that

Re: [Wicket-user] Dynamic Forwards With Wicket

2005-09-09 Thread Gwyn Evans
I might well be misunderstanding, but it seems to me that what Eelco's saying is that if you have your basic "model object" with your data, then you could derive from it to create a new "model object" with a superset of the basic objects acessor methods, and then set the new object as your Model's

Re: [Wicket-user] Some classes not showing up in Javadoc

2005-09-07 Thread Gwyn Evans
Those classes are declared as 'package' rather than 'public' and by default, JavaDoc's only generated for public & protected elements. We had a bit of a discussion, though, and changed the project properties such that they too should have generated docs from the next release. /Gwyn On 07/09/05,

Re: [Wicket-user] CompoundPropertyModels

2005-09-06 Thread Gwyn Evans
Hava a look at the attatched & see if they help with (1). Basically, there's an example of 'absolute' addressing and an example of 'relative' addressing. I'm not sure if it's the best way, but it works... /Gwyn On 06/09/05, Ralf Ebert <[EMAIL PROTECTED]> wrote: > Hi, > > some questions came upo

Re: [Wicket-user] Spring Integration

2005-09-05 Thread Gwyn Evans
eap. > -Igor > > > > -Original Message- > > From: [EMAIL PROTECTED] > > [mailto:[EMAIL PROTECTED] On Behalf Of > > Gwyn Evans > > Sent: Monday, September 05, 2005 11:58 AM > > To: wicket-user@lists.sourceforge.net > > Subject: Re: [Wicket-user] Spring I

Re: [Wicket-user] Spring Integration

2005-09-05 Thread Gwyn Evans
I've been waiting in the hope that SF do get round to upgrading their DB servers - if there's no movement soon though, I might have to look into buying some hosting space... /Gwyn On 05/09/05, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > Not at all, although I do find the wiki completely useless mo

Re: [Wicket-user] Integrating FCKeditor

2005-09-02 Thread Gwyn Evans
On 02/09/05, Ate Douma <[EMAIL PROTECTED]> wrote: > Developers > need to extend (hard link) Wicket objects and as such are binding into its > license. I'm afraid I view *that* particular assertion as ASF-sourced FUD, as to my reading of it, the LGPL certainly does not force that. See section 6

Re: [Wicket-user] Integrating FCKeditor

2005-09-02 Thread Gwyn Evans
On 02/09/05, Johan Compagner <[EMAIL PROTECTED]> wrote: > I am reading the serverside thread also. But the big question remains > if i can't use lgpl in a commercial non opensource project that i make. Looks to me as if you can as long as you:- (a) either provide the *library* source or get the

Re: [Wicket-user] Integrating FCKeditor

2005-09-02 Thread Gwyn Evans
Hmm, now after the obligatory IANAL, I think we need to be careful not to go overboard here.  There's the official word here (http://www.gnu.org/licenses/l gpl-java.html), which says    "If you distribute a Java application that imports LGPL libraries, it's easy to comply with the LGPL. Your applic

Re: [Wicket-user] main CSS file

2005-09-02 Thread Gwyn Evans
No worries - much better to have raised the issues & got them sorted than have had to give up on Wicket! /Gwyn On 02/09/05, Jim McBeath <[EMAIL PROTECTED]> wrote: > OK, got it working, thank you all very much for your patience. > > It appears the problem really was just using "/" rather than "/*

Re: [Wicket-user] main CSS file

2005-09-01 Thread Gwyn Evans
These worked, using the QuickStart jetty launcher. Using Wicket HEAD, though, as it's what I've got to hand... -- CssDemo.java --- package wicket.quickstart; import wicket.PageParameters; import wicket.markup.html.WebPage; public class CssDemo extends WebPage { public CssDemo(final PagePara

Re: [Wicket-user] main CSS file

2005-09-01 Thread Gwyn Evans
You need to change your servlet mapping to "/*", not "/" if you want to have Wicket able to serve the CSS file (from down in the hierachy) via wicket:link! /Gwyn On 01/09/05, Jim McBeath <[EMAIL PROTECTED]> wrote: > To answer Johann, here's my web.xml: > > >PUBLIC "-//Sun Mi

Re: [Wicket-user] Re: OT? Tomcat not removing wicket.jar

2005-08-31 Thread Gwyn Evans
Hmm, while the current wicket.properties might be the ideal solution, did any others come up in the discussion that led to them that might avoid this problem? /Gwyn On 31/08/05, Johan Compagner <[EMAIL PROTECTED]> wrote: > yes but this doesn't really work. > Because if you guys are going to use

Re: [Wicket-user] Re: Wicket at JavaPolis?

2005-08-30 Thread Gwyn Evans
ve seen, just as good, or > even better. Hmmm, I wonder...? > > Martijn > > > > On 8/30/05, Gwyn Evans <[EMAIL PROTECTED]> wrote: > > > > Hah! I'm a (UK) married man with 2 daughters - You think they leave > > me the time or money to head of

Re: [Wicket-user] Header contribution not working

2005-08-30 Thread Gwyn Evans
ROTECTED]> wrote: > > > >>Whoa, it's *extremely* slow. Any reason for that? > >> > >>Gili > >> > >>Gwyn Evans wrote: > >> > >>>On 30/08/05, Gili <[EMAIL PROTECTED]> wrote: > >>> > >>> &g

Re: [Wicket-user] Header contribution not working

2005-08-30 Thread Gwyn Evans
On 30/08/05, Gili <[EMAIL PROTECTED]> wrote: > My code is similar to the Wiki example (btw, Wiki is down with Fatal > error: Call to a member function on a non-object in > /home/groups/w/wi/wicket/htdocs/wiki/includes/Title.php on line 1221) Hmm - must have removed more than I meant a while back..

Re: [Wicket-user] Re: Wicket at JavaPolis?

2005-08-30 Thread Gwyn Evans
Hah! I'm a (UK) married man with 2 daughters - You think they leave me the time or money to head off to Belgium for fun! :-) Not this time, anyway! /Gwyn On 30/08/05, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > It's December 12th untill the 16th 2005 (see > http://www.javapolis.com/confluence/d

Re: [Wicket-user] How to manually set an error message

2005-08-29 Thread Gwyn Evans
Note that when in a submit() implmentation, etc, you should simply be able to call info()/error()/warning()/fatal() (i.e. on the Component) to add the message. /Gwyn On 29/08/05, Johannes Fahrenkrug <[EMAIL PROTECTED]> wrote: > Hi, > > one simple question: How do I manually get a feedbackPanel t

Re: [Wicket-user] CompoundPropertyModel and composite objects

2005-08-28 Thread Gwyn Evans
Just for completeness... You should see * PointyHairedBoss * OrganizationInfo{name='BigCo'} * BigCo * [OK] - * Model = Contact{name='PointyHairedBoss', organization=OrganizationInfo{name='BigCo'}} /Gwyn O

Re: [Wicket-user] CompoundPropertyModel and composite objects

2005-08-28 Thread Gwyn Evans
Hi, Your first syntax should work - Check the object that CompoundPropertyModel wraps & have a look at this, as this works for me... -HTML- -Java--

Re: [Wicket-user] Unexpected Page Expiration

2005-08-27 Thread Gwyn Evans
It doesn't sound familiar, so we're probably going to need a test-case to investigate it. I've had a look at the IssueSelection and there doesn't look anything odd there (although from your description, I'd have thought it's the ReportsListing that's where the focus should be.) /Gwyn On 26/08/05

Re: [Wicket-user] maybe a bug

2005-08-27 Thread Gwyn Evans
I was guessing it could happen if the markup was being parsed in by some form but didn't look at the code, so was still undecided. Anyway, I can't reproduce it here (with 1.1b3, at least) so we'll need an example to investigate further. /Gwyn On 27/08/05, Juergen Donnerstag <[EMAIL PROTECTED]> w

Re: [Wicket-user] jetty and wicket1-1b3

2005-08-27 Thread Gwyn Evans
That would normally be when it sets a cookie, I think. How are you running it with Jetty, as I'm afraid I can't reproduce it using the 'QuickStart' launcher, in that all works as expected... /Gwyn On 26/08/05, flemming <[EMAIL PROTECTED]> wrote: > After a little more investigation...it seems tha

Re: [Wicket-user] Re: expand emty tags

2005-08-26 Thread Gwyn Evans
Hmm, sounds logical when you put it that way! :-) /Gwyn On 26/08/05, Juergen Donnerstag <[EMAIL PROTECTED]> wrote: > We used to have that some time ago and users complaint about the > magic, which didn't fit there use case. Currently it is easy: we do > not automatically convert into . We do no

Re: [Wicket-user] Cayenne advantages

2005-08-26 Thread Gwyn Evans
It may be a "good thing" that the default cache implementation supports cross-vm caching, but it's a very long way short of a "design advantage", which was your 'headline' claim... /Gwyn On 26/08/05, Gili <[EMAIL PROTECTED]> wrote: > > Igor, I don't appreciate your accusations. This is n

<    1   2   3   4   >