Re: Question about Guice integration with Wicket 1.3 beta 4

2007-11-09 Thread James Perry
the application, and also for easier mock testing. Just curious - thanks for all the hard work :) Peter Mularien -- View this message in context: http://www.nabble.com/Question-about-Guice-integration-with-Wicket-1.3-beta-4-tf4778901.html#a13671046 Sent from the Wicket - User mailing list

Re: Question about Guice integration with Wicket 1.3 beta 4

2007-11-09 Thread pmularien
ConfigurableInjectors within the same wicket app simultaneously, changing InjectorHolder to a multi-valued object would make the most sense. Although I agree this gets a bit away from the simplicity of the existing model. Peter -- View this message in context: http://www.nabble.com/Question-about-Guice

Re: Question about Guice integration with Wicket 1.3 beta 4

2007-11-09 Thread Al Maw
pmularien wrote: Al Maw wrote: Yes, there was, and this issue hasn't been resolved for 1.3 yet. I did it like this because some people will want to use both Guice and Spring in their apps at the same time, especially if they're mid-migration. We should come up with a decent way to make

Re: Question about Guice integration with Wicket 1.3 beta 4

2007-11-09 Thread pmularien
filed a JIRA pointing back to this discussion. Thanks for listening! JIRA: https://issues.apache.org/jira/browse/WICKET-1143 Peter -- View this message in context: http://www.nabble.com/Question-about-Guice-integration-with-Wicket-1.3-beta-4-tf4778901.html#a13673514 Sent from the Wicket - User

Re: Question about localization

2007-11-08 Thread Pills
wicket:message key=foo as a shortcut for inserting text. Is it possible to automatically append some text to the key value? (I need to transform it to style1.foo) Thank you -- View this message in context: http://www.nabble.com/Question-about-localization-tf4756837.html#a13648232 Sent from the Wicket

Re: Question about localization

2007-11-08 Thread Igor Vaynberg
: http://www.nabble.com/Question-about-localization-tf4756837.html#a13648232 Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: Question about localization

2007-11-07 Thread Pills
in localizer to bend it to your will, but like i said beware if you do not expect to make style part of the key -igor -- View this message in context: http://www.nabble.com/Question-about-localization-tf4756837.html#a13623105 Sent from the Wicket - User mailing list archive at Nabble.com

Re: Question about localization

2007-11-07 Thread Igor Vaynberg
not expect to make style part of the key -igor -- View this message in context: http://www.nabble.com/Question-about-localization-tf4756837.html#a13623105 Sent from the Wicket - User mailing list archive at Nabble.com

Question about localization

2007-11-06 Thread Piller Sébastien
Hello everybody, I have a question about the localization in Wicket 1.3 beta 4. I have to handle different files for the same language and the same component. In example, I have a home page in english who says Hello dude! (this string is stored in a *.properties file). And I need a second

Re: Question about localization

2007-11-06 Thread Igor Vaynberg
to the key, if you have style1.message and style2.message properties defined then you wont have a problem and your StyledResourceModel can simply append style1. or style2. to your message lookups. -igor On 11/6/07, Piller Sébastien [EMAIL PROTECTED] wrote: Hello everybody, I have a question

Re: Question about localization

2007-11-06 Thread Pills
help ;) -- View this message in context: http://www.nabble.com/Question-about-localization-tf4756837.html#a13615397 Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED

question about 'isInstantiationAuthorized' method, thanks!

2007-10-23 Thread raybristol
in context: http://www.nabble.com/question-about-%27isInstantiationAuthorized%27-method%2C-thanks%21-tf4676368.html#a13360843 Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: question about 'isInstantiationAuthorized' method, thanks!

2007-10-23 Thread Jonas
However, I can't change the url for 'Return to home page' link, as the homepage is a jsp page but 'Return to home page' link just send me to the default wicket homepage which specifed in xml file right? I wonder is there a way to change it as I am working with some jsp pages. You could use

Re: question about 'isInstantiationAuthorized' method, thanks!

2007-10-23 Thread Gerolf Seitz
but 'Return to home page' link just send me to the default wicket homepage which specifed in xml file right? I wonder is there a way to change it as I am working with some jsp pages. Many thanks! -- View this message in context: http://www.nabble.com/question-about-%27isInstantiationAuthorized

Re: question about 'isInstantiationAuthorized' method, thanks!

2007-10-23 Thread raybristol
in context: http://www.nabble.com/question-about-%27isInstantiationAuthorized%27-method%2C-thanks%21-tf4676368.html#a13360843 Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL

Question about rendering of the ModalWindow content

2007-10-09 Thread Alex Objelean
I've noticed that the content of the ModalWindow is being rendered even when the ModalWindow itself is not shown. I wonder if it is correct behavior. Any thoughts? Alex. -- View this message in context: http://www.nabble.com/Question-about-rendering-of-the-ModalWindow-content-tf4593821.html

Dumb question about page transfer

2007-10-03 Thread Neil B. Cohen
Ok - I'm feeling kind of stupid at the moment, but I'm missing something basic here... I have a Wicket web page displayed with a button on it. When I click the button, the onSubmit routine fires and my java code logs a message so I know it is working. But from there, I want to transfer to

Re: Dumb question about page transfer

2007-10-03 Thread Igor Vaynberg
onsubmit() { setresponsepage(MyPage.class); or setresponsepage(new MyPage(...)); } -igor On 10/3/07, Neil B. Cohen [EMAIL PROTECTED] wrote: Ok - I'm feeling kind of stupid at the moment, but I'm missing something basic here... I have a Wicket web page displayed with a button on it.

Re: Dumb question about page transfer

2007-10-03 Thread Nick Heudecker
You're looking for the setResponsePage(...) methods. On 10/3/07, Neil B. Cohen [EMAIL PROTECTED] wrote: Ok - I'm feeling kind of stupid at the moment, but I'm missing something basic here... I have a Wicket web page displayed with a button on it. When I click the button, the onSubmit

Re: Dumb question about page transfer

2007-10-03 Thread Neil B. Cohen
Igor Vaynberg wrote: onsubmit() { setresponsepage(MyPage.class); or setresponsepage(new MyPage(...)); } -igor Thanks for the quick response... Much obliged, nbc On 10/3/07, Neil B. Cohen [EMAIL PROTECTED] wrote: Ok - I'm feeling kind of stupid at the moment, but I'm missing

Re: newbie question about using WizardStep, help! thanks!

2007-09-25 Thread raybristol
- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- View this message in context: http://www.nabble.com/newbie-question-about-using-WizardStep%2C-help%21-thanks%21-tf4509850.html#a12878125 Sent from the Wicket - User mailing list archive

Re: newbie question about using WizardStep, help! thanks!

2007-09-24 Thread Eelco Hillenius
Hi experts, I want to implement a wizard, user need to input some data, I can do it with a single page using form, but I don't know how to do it in wizard, I put a couple of input textfield etc. then I get a error: java.lang.IllegalStateException: Attempt to set model object on null model

Re: Question about best approach using Spring

2007-09-19 Thread Rick Reumann
On 9/18/07, John Krasnay [EMAIL PROTECTED] wrote: public class MyPage extends WebPage { @SpringBean public SomeService someService; public MyPage() { someService.doSomething(); } } Using an annotation instead of calling createSpringBeanProxy directly allows me

Re: Question about best approach using Spring

2007-09-19 Thread John Krasnay
On Wed, Sep 19, 2007 at 09:05:48AM -0400, Rick Reumann wrote: Yea, I'd like to use the annotation but I believe that's only working when running under Java5? (sadly, this app has to run on an old websever that is using Java4.) (The annotation is in the wicket-contrib-spring-jdk5 so I just

Re: Question about best approach using Spring

2007-09-19 Thread Rick Reumann
On 9/19/07, John Krasnay [EMAIL PROTECTED] wrote: Sounds like you still need a Spring context for your unit tests, to give createSpringBeanProxy something to work with. Not a huge deal but still a minor complication. With the annotation approach, I can just ignore the annotation and inject a

Re: Question about notifyComponentOnBeforeRenderListeners

2007-09-18 Thread Alex Objelean
-2007%29--tf4391492.html#a12520558 this topic) Any thoughts? Alex. -- View this message in context: http://www.nabble.com/Question-about-notifyComponentOnBeforeRenderListeners-tf4466023.html#a12733888 Sent from the Wicket - User mailing list archive at Nabble.com

Re: Question about notifyComponentOnBeforeRenderListeners

2007-09-18 Thread Matej Knopp
#a12520558 this topic) Any thoughts? Alex. -- View this message in context: http://www.nabble.com/Question-about-notifyComponentOnBeforeRenderListeners-tf4466023.html#a12733888 Sent from the Wicket - User mailing list archive at Nabble.com

Re: Question about notifyComponentOnBeforeRenderListeners

2007-09-17 Thread Matej Knopp
this message in context: http://www.nabble.com/Question-about-notifyComponentOnBeforeRenderListeners-tf4466023.html#a12733888 Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: Question about use Palette with DropDownChoice

2007-09-17 Thread Kent Tong
= mainChoice; } } -- View this message in context: http://www.nabble.com/Question-about-use-Palette-with-DropDownChoice-tf4447817.html#a12738225 Sent from the Wicket - User mailing list archive at Nabble.com.

Re: Question about use Palette with DropDownChoice

2007-09-17 Thread JohnSmith333
String getMainChoice() { return mainChoice; } public void setMainChoice(String mainChoice) { this.mainChoice = mainChoice; } } /pre -- View this message in context: http://www.nabble.com/Question-about-use-Palette-with-DropDownChoice-tf4447817

Re: Question about use Palette with DropDownChoice

2007-09-17 Thread Kent Tong
in context: http://www.nabble.com/Question-about-use-Palette-with-DropDownChoice-tf4447817.html#a12748126 Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: Question about use Palette with DropDownChoice

2007-09-17 Thread JohnSmith333
A again ,there will see that A1 not at selectedList. So I choice before would be disappear! Why? I have any idea yet! JohnSmith333 wrote: Have you actually tried my code? I did and it works as you described above. -- View this message in context: http://www.nabble.com/Question-about-use

Re: Question about use Palette with DropDownChoice

2007-09-17 Thread Kent Tong
://www.nabble.com/Question-about-use-Palette-with-DropDownChoice-tf4447817.html#a12748565 Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Question about use Palette with DropDownChoice

2007-09-15 Thread JohnSmith333
/file/p12690471/PaletteChoice.java PaletteChoice.java http://www.nabble.com/file/p12690471/PaletteChoice.html PaletteChoice.html http://www.nabble.com/file/p12690471/1.jpg -- View this message in context: http://www.nabble.com/Question-about-use-Palette-with-DropDownChoice-tf4447817.html

Re: Question about using UploadWebRequest

2007-08-21 Thread Oliver Henlich
Al Maw wrote: oliver.henlich wrote: The javadoc on org.apache.wicket.extensions.ajax.markup.html.form.upload.UploadWebRequest explains how to install it (Note: javadoc has problems with it...maybe the @ symbol?). class MyApplication extends WebApplication { ... @Override protected

Question about using UploadWebRequest

2007-08-20 Thread oliver.henlich
://www.nabble.com/Question-about-using-UploadWebRequest-tf4301766.html#a12244655 Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

<    1   2   3   4