Re: 1.4 -> 6.0 question

2013-04-12 Thread Pierre Goupil
Thanks for that, Marco! Regards, Pierre On Fri, Apr 12, 2013 at 8:35 AM, Marco Springer wrote: > Hello Pierre, > > You can also just override/extend the onComponentTag function from the > Component.: > > Component { > @Override > protected void onComponentTag(ComponentTag tag) { > su

Re: 1.4 -> 6.0 question

2013-04-11 Thread Marco Springer
Hello Pierre, You can also just override/extend the onComponentTag function from the Component.: Component { @Override protected void onComponentTag(ComponentTag tag) { super.onComponentTag(tag); tag.put("attribute", "value") } } As far as I can see, SimpleAttributeModifier doesn'

1.4 -> 6.0 question

2013-04-11 Thread Pierre Goupil
Good evening, I have a Wicket 1.4 code that I want to migrate to 6.0. It all works fine except for this code in a sub-class of SimpleAttributeModifier: @Override public void onComponentTag(final Component component, final ComponentTag tag) { System.out.println("ononComponentTag called. co