when the components are first created there are no request parameters,
they load their model object and initialize themselves to that.

-igor


On Fri, May 16, 2008 at 8:25 AM, Till Wenzinger <[EMAIL PROTECTED]> wrote:
> Hi,
>
>
>
> In my application, the check boxes are selected by default. According to my
> understanding, this loss of default settings is unexpected.
>
>
>
> I mentioned the following Check code:
>
>
>
>            if (group.hasRawInput())
>
>            {
>
>                  final String[] input = group.getInputAsArray();
>
>
>
> FormComponent#getInputAsArray does not refer to the raw input. Instead,
> request parameters are read:
>
>
>
>      public String[] getInputAsArray()
>
>      {
>
>            String[] values = getRequest().getParameters(getInputName());
>
>            if (!isInputNullable())
>
>            {
>
>                  if (values != null && values.length == 1 &&
>
> ...
>
>
>
>
>
> As far as I understand it, wizard step handling is performed without request
> parameters. This does not make any sense to me.
>
>
>
> /Till
>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to