Is there a way to only allow one expander to be expanded? I have a group of expanders and I want only one expander expanded at a time.
Thanks,
Mark
2 Answers, 1 is accepted
0
Hristo
Telerik team
answered on 14 Aug 2012, 07:25 AM
Hello Mark,
There is no build in functionality supporting such a feature. However you could achieve your desired scenario via bindings.
First, you should bind the Visibility of every Expander to a dedicated property.
Second, in the property setter (or property change callback) you should trigger the synchronization logic and set other properties to collapsed when the current one is set to visible.
Hope this helps. Please let us know if you need more info or face any issues.