[ 
https://issues.apache.org/jira/browse/WICKET-2320?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Igor Vaynberg resolved WICKET-2320.
-----------------------------------

    Resolution: Invalid
      Assignee: Igor Vaynberg

so like i told you on the list, the problem here is that you are using a 
textfield.

if you change to a label everything will work fine, and if you want to keep 
using a textfield you will have to call clearinput() on it. after a formsubmit 
the textfield will keep the raw input in order to repaint itself instead of 
using the model, clearinput() evicts that input and will make textfield poll 
the model.

eg

AjaxButton pressmeButton= new AjaxButton("pressmeButton")
        {
            protected void onSubmit(AjaxRequestTarget target, Form form)
            {
                super.onSubmit();
                txtField.clearInput();
            }
        };

> change of locale does not seem to work on fields in a form after an inner 
> form has been submittet
> -------------------------------------------------------------------------------------------------
>
>                 Key: WICKET-2320
>                 URL: https://issues.apache.org/jira/browse/WICKET-2320
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket
>    Affects Versions: 1.3.6
>         Environment: modified 1.3.6 quickstart application
>            Reporter: Morten Steffensen
>            Assignee: Igor Vaynberg
>            Priority: Minor
>         Attachments: myproject.tar.gz
>
>
> I have attached a modified quickstart application to show the effect

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to