Undesired behavior of wicket:enclosure in 1.3.0-final compared to 1.3.0-rc2

2008-01-04 Thread Daniel Kröger
Hi all, consider the following markup: In Wicket 1.3.0-final I get an Unexpected RuntimeException (WicketMessage: Expected close tag for ) when the component with id "label1" has its visibility set to false. In Wicket 1.3.0-rc2 everything worked fine. Was this behavior intended

Browser back button and Wizard

2007-10-31 Thread Daniel Kröger
Hi, it's me again, and I'm still struggling with the Wizard component. :) When pressing the browser's back button on the let's say third WizardStep of a Wizard, the browser returns to the first WizardStep instead of the previous (the second) one. This is a very unintuitive behavior, especially fo

Re: EqualInputValidator inside WizardStep

2007-10-29 Thread Daniel Kröger
m into > your step's panel and add the validator to that, be sure to let us > know if that works. > > eelco what do you think? > > -igor > > > On 10/29/07, Daniel Kröger <[EMAIL PROTECTED]> wrote: > > Hi, > > > > I need to check two TextFields f

EqualInputValidator inside WizardStep

2007-10-29 Thread Daniel Kröger
Hi, I need to check two TextFields for equality within a WizardStep, so i added an EqualInputValidator to the Wizard's form inside the onBeforeRender() method of the WizardStep: protected void onBeforeRender() { super.onBeforeRender(); final Form form = ((Wizard) getModelObject()).getForm();

AjaxFormChoiceComponentUpdatingBehavior not working when RadioChoice prefix and suffix are set

2007-10-26 Thread Daniel Kröger
Hi all, the onUpdate() method of AjaxFormChoiceComponentUpdatingBehavior added to a RadioChoice component doesn't get called when the rendered radio buttons are nested inside another HTML tag through RadioChoice.setPrefix() and RadioChoice.setSuffix(). I think the reason is that the corrensponding

RE: RadioChoice vs. RepeatingView inside RadioGroup

2007-10-18 Thread Daniel Kröger
RepeatingView inside RadioGroup > > Why do you *need* to add a class to the label? > > > ... > > > css: > > .myradiogroupclass label { > color : red; > font-size : 72px; > } > > Martijn > > On 10/18/07, Daniel Kröger <[EMAIL PROTE

RadioChoice vs. RepeatingView inside RadioGroup

2007-10-18 Thread Daniel Kröger
Hi, using a RadioChoice within my project is out of question because RadioChoice seems to render the -tag behind the -Tag statically, but i need to add a class-attribute to that -tag. So one attempt could be using a RepeatingView inside the RadioGroup to dynamically generate the Radios as propose