Hi all,

i came across the issue when binding a focusout event to a text field,
it fires twices each time when leaving the textfield.

Example code:

TextField<String> textbox = new TextField<>("textbox");
textbox.add(new AjaxEventBehavior("focusout") {
            @Override
            protected void onEvent(AjaxRequestTarget target) {
                System.out.println("Focus lost on TextField");
            }
});
add(textbox);

This does not happen for blur event. Can this may be caused by event
bubbling of focusout?

Best regards,
Claudia Beck


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

Reply via email to