Hi,

it works fine here with a small example.

Please create a quickstart and attach it to a jira issue.

Thanks
Sven

On 07/30/2014 07:42 PM, Behrooz Nobakht wrote:
Yes, I've tried all from 6.13.0 to 6.16.0 and the issue is the same.

Thanks,
Behrooz



On Wed, Jul 30, 2014 at 7:32 PM, Sven Meier <s...@meiers.net> wrote:

Have you tried 6.16.0?

Regards
Sven



On 07/30/2014 07:11 PM, Behrooz Nobakht wrote:

Hi,

I just upgraded an Apache Wicket application from 6.12.0 to 6.13.0 with a
page including form with the following component:

```
textfield.add(new AjaxFormComponentUpdatingBehavior("onchange") {
   private static final long serialVersionUID = 1L;
   @Override
   protected void onUpdate(AjaxRequestTarget target) {
target.add(button);
   String validationMessage = validateModel(model);
if (validationMessage != null) {
addErrorMessage(target, feedback, validationMessage);
   button.setEnabled(false);
return;
}

button.setEnabled(true);
}
});
```

With 6.13.0, when I write something in the textfield and then press a tab
(go to next field), the page automatically gets reloaded. Is this a known
issue? What am I missing?

Thanks in advance,
Behrooz




---------------------------------------------------------------------
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