This question is locked. New answers and comments are not allowed.
I'm attempting to bind a RadPanelBar to a flat data source in Silverlight. All the examples I am seeing using hierarchical data.
I want to show a simple log of events, with the ability to drop down and see a single text field with event details. I can recreate what I want manually like so:
<
Controls:RadPanelBarItem
>
<
Controls:RadPanelBarItem.Header
>
<
Grid
>
<
Grid.ColumnDefinitions
>
<
ColumnDefinition
Width
=
"160"
/>
<
ColumnDefinition
Width
=
"350"
/>
<
ColumnDefinition
Width
=
"*"
/>
</
Grid.ColumnDefinitions
>
<
sdk:Label
Content
=
"Created Date"
HorizontalAlignment
=
"Left"
/>
<
sdk:Label
Content
=
"Subject"
Margin
=
"0"
Grid.Column
=
"1"
HorizontalAlignment
=
"Left"
/>
<
sdk:Label
Content
=
"Contacted By"
Margin
=
"0"
Grid.Column
=
"2"
HorizontalAlignment
=
"Left"
/>
</
Grid
>
</
Controls:RadPanelBarItem.Header
>
<
TextBlock
Margin
=
"0"
TextWrapping
=
"Wrap"
Text
=
"Notes Notes Notes Notes"
/>
</
Controls:RadPanelBarItem
>