I tried it also with

final IModel<String> tagTitleModel = Model.of("");

(..., tagTitleModel)

But it won't work!



----- Ursprüngliche Mail ----
Von: Ernesto Reinaldo Barreiro <reier...@gmail.com>
An: users@wicket.apache.org
Gesendet: Dienstag, den 20. Oktober 2009, 16:24:16 Uhr
Betreff: Re: why is the model empty?

Sorry but when is the model object update?
final TextField<String> tagTitle = new TextField<String>("tagTitle",
Model.of(""));

just creates and in-mutable model? Or,  am I missing something?

Best,

Ernesto

On Tue, Oct 20, 2009 at 3:17 PM, Peter Arnulf Lustig <uuuuu...@yahoo.de>wrote:

> hi,
>
> in the submit logic the getModel().getObject() is an empty string although
> I set it via textfield:
>
> final Button tagSubmit = new Button("tagSubmit", Model.of("")) {
>            @Override
>            public void onSubmit() {
>                    tagTitle.getModel().getObject() // it is empty!!
>                }
>            }
>
>        };
>
>
> that's the textfield:
>
> final TextField<String> tagTitle = new TextField<String>("tagTitle",
> Model.of(""));
>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>





---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to