Again, I can offer a hack :D

public class DoSomeHackBehavior extends AbstractBehavior {

        private static final long serialVersionUID = 3554634545756435367L;

        @Override
        public void onComponentTag(Component component, ComponentTag tag) {
                FormComponent<?> comp = (FormComponent<?>) component;
                        tag.getAttributes().remove("onblur");
                }
        }
        
}

after that, you can add this behaviour to any component

component.add(new DoSomeHackBehaviour());

:D
-- 
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/AjaxFormComponentUpdatingBehavior-Question-tp2968982p2969053.html
Sent from the Users forum mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to