I have 3 level hierarchical Panel bar. How Do I access Top level radpanelItems collection and inside top level second level panel item collection.
I would like to set different font settings for Top most level and second level. I would also like to expand only Top most level panel items. How do I do this?
I don’t see down arrow in the second level even if it has chid items it only show plain text when user clicks on it , it expands and shows child item. But I think I am supposed to see down arrow on right hand side indicating that it has child items. I see this arrow only on Topmost level.
This is how I am binding the data to the panel bar
With pnlbarCategory
.DataSource = dtCategory
.DataTextField = "Name"
.DataNavigateUrlField = ""
.DataFieldID = "Id"
.DataFieldParentID = "ParentId"
.DataValueField = "value"
.DataBind()
End With