Re: [Wicket-user] PageLink called request two times

2006-03-03 Thread Johan Compagner
is it the same request when that happens?For example also set a breakpoint in WicketServlet.doGet()is that called again before the second onbeginrequest?Because then it looks like that the redirect to buffer doesn't work quite right if a redirect is done then (don't know because you do things

[Wicket-user] submitting wicket examples

2006-03-03 Thread Nino Wael
Title: submitting wicket examples Hi Im in the mist of developing a bunch of controls for wicket, one for example will be able to populate a listbox based on the selection of another listbox. I guess this is something that could be of interest for the typical wicket user. So how do I

Re: [Wicket-user] submitting wicket examples

2006-03-03 Thread Juergen Donnerstag
You send them to me and I'll add them to either wicket-examples or wicket-contrib-examples. And I'll deploy them on wicket-library. Juergen On 3/3/06, Nino Wael [EMAIL PROTECTED] wrote: Hi Im in the mist of developing a bunch of controls for wicket, one for example will be able to populate

Re: [Wicket-user] submitting wicket examples

2006-03-03 Thread Juergen Donnerstag
Sorry one more note on this: Like you used the examples to learn Wicket many others do which is why we try hard to explain (javadoc) them as good as possible. Juergen On 3/3/06, Juergen Donnerstag [EMAIL PROTECTED] wrote: You send them to me and I'll add them to either wicket-examples or

RE: [Wicket-user] submitting wicket examples

2006-03-03 Thread Nino Wael
Yeah, the javadoc is great. However sometimes you can explain all you want and still be stuck, but an example will give you the correct kick to get running. Also I feel that sometimes the javadoc Is pretty simple in the examples given, because it is a javadoc and must explain what the different

Re: [Wicket-user] best place for corr'ding .html files? (using maven 2 + version control)

2006-03-03 Thread Rob Dickens
Thanks goes to Martijn and Eelco. I managed to get away with adding just the following (to the pom.xml, to copy the files into place): project ... build resources resource directorysrc/main/java/directory includes include**/*.html/include

Re: [Wicket-user] Header Contribution on inherited panels

2006-03-03 Thread Andre Matheus
Hi, do you have any news for me? Was the test case right? ___ André Matheus On 2/27/06, Andre Matheus [EMAIL PROTECTED] wrote: Hi, I would very much appreciate if could prepare a little test case for me (like in src/test and based on WicketTestCase) for me to validate the

RE: [Wicket-user] Replacing Page components in response to user input

2006-03-03 Thread Frank Silbermann
Me: However, at any time the user can re-set the options and re-submit, causing a completely different DataTable based on a new DataProvider. Eelco Hillenius: First of all, ask yourself whether it is a completely different datatable, or whether the it's just a different model. Suppose it's

[Wicket-user] pom.xml: correct way to specify dependency on Wicket jar?

2006-03-03 Thread Rob Dickens
To those using Maven 2 to build their Wicket projects, The following appears to cause the Wicket jar, *together with all of its dependencies* to be copied into the WEB-INF/lib/ of the target war file: dependencies dependency groupIdwicket/groupId

Re: [Wicket-user] Header Contribution on inherited panels

2006-03-03 Thread Juergen Donnerstag
I'm working on it, but it seems there are more changes necessary than I thought. I suggest to try find a work around. Not sure when it'll be ready. Juergen On 3/3/06, Andre Matheus [EMAIL PROTECTED] wrote: Hi, do you have any news for me? Was the test case right? ___ André Matheus On

Re: [Wicket-user] pom.xml: correct way to specify dependency on Wicket jar?

2006-03-03 Thread Martijn Dashorst
This is because the wicket 1.1.1 pom.xml is automatically converted from the maven 1 project.xml file.this conversion doesn't distinguish between compile, test and provided dependencies.you can edit your POM for 1.1.1 in your local repository to make the correct adjustments.MartijnOn 3/3/06, Rob

Re: [Wicket-user] is IValidatorResourceKeyFactory being used

2006-03-03 Thread sven
I really like your refactorings on the validation stuff. One additional request: Thanks to Johan's addition I now get the following error message for my component 'bar' with a missing resource: java.util.MissingResourceException: Unable to find resource: BazValidator for component:

[Wicket-user] CustomLayoutAjaxAutocompleteTextField

2006-03-03 Thread Mats Norén
Hi, I've been trying to use the CustomLayoutAjaxAutocompleteTextField from wicket-contrib-scriptaculous. Everything works as expected but for my usecase it doesn't quite fit. I was wondering how I could achieve the following: What I want to do is to let the user search for a Party by full name so

Re: [Wicket-user] submitting wicket examples

2006-03-03 Thread Igor Vaynberg
what juergen ment is that it would be nice if you had good javadoc for your submissions :)-IgorOn 3/3/06, Nino Wael [EMAIL PROTECTED] wrote:Yeah, the javadoc is great. However sometimes you can explain all you want and still be stuck, but an example will give you the correct kick to get running.

Re: [Wicket-user] best place for corr'ding .html files? (using maven 2 + version control)

2006-03-03 Thread Igor Vaynberg
it is a much better practice to use include everythig but java like eelco and martijn showed you. if later you decide to add a .properties file for any reason (validator messages, i18n, whatever) or a package resource (.css, images) they will magically not appear in the war and you will have to go

Re: [Wicket-user] Header Contribution on inherited panels

2006-03-03 Thread Andre Matheus
Don't worry. Just tell me if I can help. Regards, ___ André Matheus On 3/3/06, Juergen Donnerstag [EMAIL PROTECTED] wrote: I'm working on it, but it seems there are more changes necessary than I thought. I suggest to try find a work around. Not sure when it'll be ready. Juergen On

Re: [Wicket-user] CustomLayoutAjaxAutocompleteTextField

2006-03-03 Thread Ryan Sonnek
I wrote that autocomplete compoinent, and it's not too fancy. if you have a different usecase, i suggest writing your own component for what you need it to do. scriptaculous makes the ajax stuff pretty easy, and wicket makes the rest a snap. On 3/3/06, Mats Norén [EMAIL PROTECTED] wrote: Hi,

Re: [Wicket-user] pom.xml: correct way to specify dependency on Wicket jar?

2006-03-03 Thread Rob Dickens
Just confirming that this did the trick. In the wicket-1.1.1.pom: dependencies dependency groupIdjunit/groupId artifactIdjunit/artifactId version3.8.1/version + scopetest/scope /dependency dependency groupIdlog4j/groupId

RE: [Wicket-user] Replacing Page components in response to user input

2006-03-03 Thread Frank Silbermann
I can see the motivation for putting my replaceable components in a Panel if the HTML requirements differ.Likewise, if I have enough components to replace that I'd rather not have to replace them one at a time.But if it's just a single component that I'm replacing, is there really any

Re: [Wicket-user] Replacing Page components in response to user input

2006-03-03 Thread Igor Vaynberg
if the /only/ thing you are replacing is a datatable which is /already/ a panel then you dont need to do anything extra.-IgorOn 3/3/06, Frank Silbermann [EMAIL PROTECTED] wrote: I can see the motivation for putting my replaceable components in a Panel if the HTML

RE: [Wicket-user] New RequiredValidator and DropDownChoice

2006-03-03 Thread Bennett, Timothy (JIS - Applications)
What's the best way for me to this fix in the Wicket 1.1.1 codebase? Do I create a CustomValidator with essentially the impl below, and use this custom validator for my 1.1.1 DropDowns? -Original Message- From: Eelco Hillenius [mailto:[EMAIL PROTECTED] Sent: Sunday, February 19,

[Wicket-user] previewable pages

2006-03-03 Thread Ryan Sonnek
One of my favorite features in wicket is that the pages are completely previewable in a normal web browser even outside of wicket. JSP is simply a mess of nested scriptlets and xml and other junk. That being said, I was getting frustrated that I would lose previewable pages when I start