[Wicket-user] ClientProperties in Wicket 1.2.6 and GPL license

2007-06-28 Thread JulianS
One of our partners will not allow us to use Wicket because a piece of it is GPL-licensed. From what I can tell, they must be referring to ClientProperties.java. Can this be removed from the distribution? It looks like it's been rewritten in 1.3? Thanks, Julian -- View this message in context:

Re: [Wicket-user] RadioGroup and AjaxFormComponentUpdatingBehavior

2007-06-21 Thread JulianS
Thanks, seems to work fine. Julian Alex Objelean wrote: There is another approach, see http://www.nabble.com/-Question--wicket.markup.html.form.Radio-tf3926549.html#a11135460 here -- View this message in context:

Re: [Wicket-user] RadioGroup and AjaxFormComponentUpdatingBehavior

2007-06-20 Thread JulianS
Martijn, Was this ever fixed for 1.2.x? The link below gives the error Only Group Members Can View Private ArtifactTypes. Thanks, Julian Martijn Dashorst wrote: I already created a bug report: http://sourceforge.net/tracker/index.php?func=detailaid=1501513group_id=119783atid=684975 It

Re: [Wicket-user] RadioChoice with ajax in wicket 1.3?

2007-06-20 Thread JulianS
I've created a solution that works for me. See http://blogstoyevskys-javajourney.blogspot.com/2007/06/ajax-enabled-radio-group-for-wicket-12x.html this post . Julian JulianS wrote: Is there a backport for this to 1.2.x? Or a hint of how to do it? I really could use it. Thanks, Julian

Re: [Wicket-user] RadioChoice with ajax in wicket 1.3?

2007-06-19 Thread JulianS
Is there a backport for this to 1.2.x? Or a hint of how to do it? I really could use it. Thanks, Julian Johan Compagner wrote: the class is: AjaxFormChoiceComponentUpdatingBehavior -- View this message in context:

Re: [Wicket-user] wicket did not make the grade.

2007-06-05 Thread JulianS
Al Maw wrote: Maybe we should include something like this in wicket-examples. People just don't seem to appreciate how easy it is to write this stuff. Absolutely you should do this. Two big reasons I was able to persuade my current client to go with Wicket were the excellent examples and

Re: [Wicket-user] ComponentFeedbackPanel and EqualPasswordInputValidator

2007-06-05 Thread JulianS
Jonathan Locke wrote: ComponentFeedbackPanel will only ever show error messages reported by the given component: public boolean accept(FeedbackMessage message) { return component == message.getReporter(); } If you want to show validation errors

Re: [Wicket-user] Question about WebApplication.mount(String path, PackageName packageName)

2007-05-10 Thread JulianS
Johan Compagner wrote: who is making a patch :) I don't know what the process is to submit patches, so I have attached them to this message. Julian http://www.nabble.com/file/8304/WebApplication.diff WebApplication.diff

Re: [Wicket-user] Question about WebApplication.mount(String path, PackageName packageName)

2007-05-10 Thread JulianS
Done: WICKET-554 Johan Compagner wrote: make a jira issue for this https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=truemode=hidepid=12310561sorter/order=DESCsorter/field=priorityresolution=-1component=12311420 On 5/10/07, JulianS [EMAIL PROTECTED] wrote: Johan

Re: [Wicket-user] Newbie Qs about DynamicWebResource

2007-05-09 Thread JulianS
Johan Compagner wrote: why also append the jsessionid in the post url? or as an hidden field? You are right, passing the jsessionid to the server is not a problem. The problem is, how do we check that session id against what is in the wicket session, since the DynamicWebResource doesn't

Re: [Wicket-user] Newbie Qs about DynamicWebResource

2007-05-09 Thread JulianS
igor.vaynberg wrote: are you sure you cant do Session.get() in the resource? That's the solution! Thanks very much. I said it was a newbie question :) Julian -- View this message in context: http://www.nabble.com/Newbie-Qs-about-DynamicWebResource-tf3712534.html#a10398102 Sent from the

[Wicket-user] Question about WebApplication.mount(String path, PackageName packageName)

2007-05-09 Thread JulianS
If you mount a package e.g. mount(/pages, PackageName.forClass(Index.class)); You will run into a RuntimeException if you type in a url like http://localhost:8081/quickstart/app/pages; (I'm using Wicket 1.2.5): WicketMessage: Unable to load class with name: wicket.quickstart. Root

[Wicket-user] How to call DataView.setItemsPerPage() dynamically?

2007-05-09 Thread JulianS
I need to be able to change the number of rows displayed in a DataView dynamically. But when I try to do so in response to user input, I get the following exception: WicketMessage: Exception in rendering component: [MarkupContainer [Component id = 5, page = com...ViewPoliciesPage, path =

[Wicket-user] Newbie Qs about DynamicWebResource

2007-05-08 Thread JulianS
We are building a Wicket app that also needs to support applets. The applets are modeless dialogs that live outside the browser. Each applet communicates with the server by sending data to a URL and receiving a text response. We can do this by creating a service that subclasses

Re: [Wicket-user] MouseOver Effect on DataTable

2007-05-04 Thread JulianS
Note to future generations (that is, those who only care about FireFox and IE7+): just add tr:hover to your CSS, for example: tr.even { background-color: #d6ddee; } tr.even:hover { background-color: #8fa4d1; } tr.odd { } tr.odd:hover { background-color: #8fa4d1; } But

Re: [Wicket-user] Wanted: Example about Tree Menu Navigation

2007-04-27 Thread JulianS
Crag wrote: I want the example, a simple tree menu . See http://www.nabble.com/Tree-for-navigation-tf3524348.html#a9859828 http://www.nabble.com/Tree-for-navigation-tf3524348.html#a9859828 for a simple solution. Julian -- View this message in context:

[Wicket-user] Update to Using frames page on Wiki

2007-04-23 Thread JulianS
Update to Using frames on the Wicket Wiki: http://cwiki.apache.org/WICKET/using-frames.html http://cwiki.apache.org/WICKET/using-frames.html I'm using 1.2.5 and I've found the syntax has changed slightly. Instead of: lt;FRAME

Re: [Wicket-user] Two-panel selector component?

2007-04-16 Thread JulianS
Nick Heudecker wrote: I think this component exists in wicket-extensions. I believe it's called Pallet. Excellent, thank you. The problem is the name: I would never associate the name Palette with such a component. Julian -- View this message in context: