keyboard shortcuts in wicket ?

2007-08-21 Thread Steen Larsen
Hi, I am doing an evaluation of wicket and would like to know if there is any support for keyboard shortcuts besides the standard html accesskey. Is it for instance possible to define a key kombination for an AJAX component ? /Steen

Absolute urls in forms

2009-08-21 Thread Steen Larsen
Hi, Just a quick question. Is it somehow possible to make Wicket generate absolute urls in the forms action attribute. The reason I ask is because my Wicket application is going to be embedded in a CMS through a proxy, and apparently the dude writing the proxy would prefer the urls to be

Re: Absolute urls in forms

2009-08-21 Thread Steen Larsen
...@gmail.com: Hi, Why can't you just add a AttributeModifier to the Form and then modify it as you wish ? Best Regards Cemil On Fri, Aug 21, 2009 at 9:43 AM, Steen Larsen steen...@gmail.com wrote: Hi, Just a quick question. Is it somehow possible to make Wicket generate absolute urls

Re: Absolute urls in forms

2009-08-22 Thread Steen Larsen
Haha, Its not me doing the proxy work. Don't know why they consider it a problem, but they would really like absolute urls. /Steen 2009/8/21 Igor Vaynberg igor.vaynb...@gmail.com: thats funny, we worked really had to make all urls relative because it would make it a lot easier to work with

Re: Absolute urls in forms

2009-08-25 Thread Steen Larsen
Thanks 2009/8/25 Erik van Oosten e.vanoos...@grons.nl: I added a patch in Jira. Regards,    Erik. Erik van Oosten wrote: Anyways, you can make all URLs absolute by following the hints in https://issues.apache.org/jira/browse/WICKET-1974. You'll need to patch Wicket as the issue is

absolute urls in form action

2009-04-27 Thread Steen Larsen
Hi, Does anybody know if it's possible to get Wicket to use absolute urls in a forms action attribute, and how to accomplish this if possible. We're trying to get a Wicket application integrated into a CMS system, through some proxying and need the full urls since the CMS is on a different server

Re: absolute urls in form action

2009-04-27 Thread Steen Larsen
/jira/browse/WICKET-1974 for more details. With some tweaks you can make the shown code work for any context (not just the root context). Regards, Erik. Steen Larsen wrote: Hi, Does anybody know if it's possible to get Wicket to use absolute urls in a forms action attribute, and how

Panels in forms problem

2008-01-09 Thread Steen Larsen
I have a form with a RadioGroup containing a ListView much like the example from WicketStuff, which works fine. Now I would like to get the radiogroup part out into a panel that I could then add to the form multiple times with different models (products), however I can't figure out where the

Nested forms problem

2008-01-23 Thread Steen Larsen
Hi, I have seen that nested forms should be possible in Wicket 1.3, so i have tried to use it in one of my projects, but for some reason when submitting the inner form, only the outer form submit method is run. The code looks something like this: In a WebPage class MandatoryProductsForm

Re: Nested forms problem

2008-01-23 Thread Steen Larsen
PROTECTED]: http://www.thescripts.com/forum/thread95602.html On 1/23/08, Steen Larsen [EMAIL PROTECTED] wrote: Hi, I have seen that nested forms should be possible in Wicket 1.3, so i have tried to use it in one of my projects, but for some reason when submitting the inner form, only

Re: Nested forms problem

2008-01-23 Thread Steen Larsen
=submit wicket:id=searchPhone/ The button's onSubmit method should be called. -Matej On Jan 23, 2008 3:38 PM, Steen Larsen [EMAIL PROTECTED] wrote: According to the javadoc for Form it is possible because the inner form gets substituted with span tags. It says: quote Forms can

Re: Nested forms problem

2008-01-24 Thread Steen Larsen
and I don't believe Tapestry supports it (at least it didn't). I guess I just assumed Wicket didn't either. There's another reason for me to make the switch! :) I'm going to have to go look into this. Sounds like an interesting feature and I want to see how they do it. On 1/23/08, Steen Larsen

Re: Changing Wickets default styles

2008-04-01 Thread Steen Larsen
Steen Larsen wrote: Hi, I have made a stylesheet to change the default look of the FeedbackPanel, and loaded it with response.renderCSSReference(new ResourceReference( Style.class,yousee.css), screen), where the class Style and the css is in the same package. The css looks like

Re: Changing Wickets default styles

2008-04-03 Thread Steen Larsen
Martinez Vazquez Wael [EMAIL PROTECTED]: so you got this sorted out right? Steen Larsen wrote: I'm also developing mainly on firefox, and have tried clearing the cache an all, but no luck. My colleague tried it out with the same result and he had never downloaded the new stylesheet

CheckGroup and back Button problem

2008-05-07 Thread Steen Larsen
Hi, I have made a CheckGroup vith a ListView of Check's than works fine, except that when it is submitted and I'm on the next page and want to go back through a Wicket Button (not the browsers back button), all the checks are empty even thouch the model behind still contains the selected obejcts.

Re: CheckGroup and back Button problem

2008-05-08 Thread Steen Larsen
(checked, checked); It looks like the Check component is checking for the existence of raw input, but then using the input from the current request (via getInputAsArray()) to render. Sounds fishy! I figure this could be related? Thomas On Wed, May 7, 2008 at 5:27 PM, Steen Larsen [EMAIL