Re: removing SimpleAttributeModifier after added

2011-01-10 Thread Altuğ Bilgin Altıntaş
Thanks Martin. 2011/1/10 Martin Grigorov > 2011/1/10 Altuğ Bilgin Altıntaş > > > 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

Re: removing SimpleAttributeModifier after added

2011-01-10 Thread Martin Grigorov
2011/1/10 Altuğ Bilgin Altıntaş > 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 sub-tree just repl

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 > Or simply make it invisible > > replace it with dummy one that renders nothing >> >> 2011/1/10 Altuğ Bilgin Altıntaş >> >> Thanks. Also i want to know if i remove an c

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

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

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

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ş > Hi, > > Java code: > > final WebMarkupContainer delete = new WebMarkupContainer("delete"); > delete.setOutput

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 : then after i want to remove SimpleAttributeModifier - filter" from WebMarkupContainer - delete, A