i use the "kendo-panel-bar" wich works good with static data.
but, when i try to use "ng-repeat" everything breaks.
as a simple example to demonstrate this issue:
OK:
====
<ul kendo-panel-bar>
<li>TITEL
<ul>
<li>
TITEL 2
<ul><li>test 1</li><li>test 2</li></ul>
</li>
</ul>
</li>
</ul>
NOT WORKING:
=============
<ul kendo-panel-bar>
<li>TITEL
<ul>
<li ng-repeat="d in dataSource._data">
{{d.text}}
<ul><li>test 2</li><li>test 2</li></ul>
</li>
</ul>
</li>
</ul>
How can i fix that? I need the dynamic and nested options.