Re: removing SimpleAttributeModifier after added

2011-01-10 Thread Martin Grigorov
Component#remove(behavior) you need to keep a reference to the behavior or you may iterate over the behavior and remove the one that match your criteria 2011/1/10 Altuğ Bilgin Altıntaş alt...@gmail.com Hi, Java code: final WebMarkupContainer delete = new WebMarkupContainer(delete);

Re: removing SimpleAttributeModifier after added

2011-01-10 Thread Altuğ Bilgin Altıntaş
Thanks. Also i want to know if i remove an component from Java side final WebMarkupContainer delete = new WebMarkupContainer(delete); add (delete ) after than remove(delete ); gives error because on html side tag is still there. How to remove a component without markup error. Thanks.

Re: removing SimpleAttributeModifier after added

2011-01-10 Thread Martin Grigorov
replace it with dummy one that renders nothing 2011/1/10 Altuğ Bilgin Altıntaş alt...@gmail.com Thanks. Also i want to know if i remove an component from Java side final WebMarkupContainer delete = new WebMarkupContainer(delete); add (delete ) after than remove(delete ); gives error

Re: removing SimpleAttributeModifier after added

2011-01-10 Thread andrea del bene
Or simply make it invisible replace it with dummy one that renders nothing 2011/1/10 Altuğ Bilgin Altıntaşalt...@gmail.com Thanks. Also i want to know if i remove an component from Java side final WebMarkupContainer delete = new WebMarkupContainer(delete); add (delete ) after than

Re: removing SimpleAttributeModifier after added

2011-01-10 Thread Altuğ Bilgin Altıntaş
your solutions are hack but ok. invisible is ok but what if i wanna change the DOM structure... 2011/1/10 andrea del bene andrea.on@libero.it Or simply make it invisible replace it with dummy one that renders nothing 2011/1/10 Altuğ Bilgin Altıntaşalt...@gmail.com Thanks. Also i

Re: removing SimpleAttributeModifier after added

2011-01-10 Thread Martin Grigorov
2011/1/10 Altuğ Bilgin Altıntaş alt...@gmail.com your solutions are hack but ok. invisible is ok but what if i wanna change the DOM structure... then you need to use Panels use one Panel for structure1 and another panel for structure2, and Wicket's EmptyPanel when you want to remove the

Re: removing SimpleAttributeModifier after added

2011-01-10 Thread Altuğ Bilgin Altıntaş
Thanks Martin. 2011/1/10 Martin Grigorov mgrigo...@apache.org 2011/1/10 Altuğ Bilgin Altıntaş alt...@gmail.com your solutions are hack but ok. invisible is ok but what if i wanna change the DOM structure... then you need to use Panels use one Panel for structure1 and another panel

removing SimpleAttributeModifier after added

2011-01-09 Thread Altuğ Bilgin Altıntaş
Hi, Java code: final WebMarkupContainer delete = new WebMarkupContainer(delete); delete.setOutputMarkupPlaceholderTag(true); delete.add(new SimpleAttributeModifier(filter, false)); html : th wicket:id=delete /th then after i want to remove SimpleAttributeModifier - filter from