Re: Border fails to render if its contents are not visible by default (WICKET-1789 ?)

2009-02-05 Thread smallufo
igor: Thank you very much , it works ! BR -- smallufo 2009/2/5 Igor Vaynberg igor.vaynb...@gmail.com remove border.settransparentresolver(true); instead of add(listViewContainer.add(listView)); do border.add(listViewContainer.add(listView)); now your component hierarchy is proper,

Border fails to render if its contents are not visible by default (WICKET-1789 ?)

2009-02-04 Thread smallufo
I don't know if the problem has any relation to WICKET-1789 https://issues.apache.org/jira/browse/WICKET-1789 But I have a very similar situation : My problem traces back to WICKET-1712 https://issues.apache.org/jira/browse/WICKET-1712 I want to create a component which can Expand and Collapse

Re: Border fails to render if its contents are not visible by default (WICKET-1789 ?)

2009-02-04 Thread Igor Vaynberg
remove border.settransparentresolver(true); instead of add(listViewContainer.add(listView)); do border.add(listViewContainer.add(listView)); now your component hierarchy is proper, things are actually inside the border - which is how the border is meant to be used. your main problem was this