I have a simple panelbar but it will not expand using client Javascript, i.e. item.expand(), unless the RadPanelItem has a text attribute.
I do not need the text attribute as the content is defined in the item template. Also, it does not seem possible to hide the vertical space taken by the root item using skin css (not for IE anyway).
Is there a way I can achieve a textless panel item that expands please?
<telerik:RadPanelBar ID="MyPanelBar" Width="100%" runat="server"> |
<Items> |
<telerik:RadPanelItem Expanded="false" Text="I DONT WANT THIS TEXT"> |
<ItemTemplate> |
<table><tr><td>1</td><td>2</td></tr></table> |
</ItemTemplate> |
<Items> |
<telerik:RadPanelItem> |
<ItemTemplate> |
<table><tr><td>1</td><td>2</td></tr></table> |
</ItemTemplate> |
</telerik:RadPanelItem> |
</Items> |
</telerik:RadPanelItem> |
</Items> |
</telerik:RadPanelBar> |