This is a migrated thread and some comments may be shown as answers.

How to show Row details?

1 Answer 40 Views
GridView
This is a migrated thread and some comments may be shown as answers.
Sergey
Top achievements
Rank 1
Iron
Sergey asked on 26 Jul 2012, 05:38 PM

Can someone point to the steps I have to make to Row details "+" indicator to appear?
What I have already is defined RowDetailsTemplate and bound ItemSource.
Looks like I'm missing something.

<telerik:RadGridView x:Name="GeoAuthGridView"
      ShowGroupPanel="False"
      AutoGenerateColumns="False"
      ItemsSource="{Binding GeoAuthorizations}">
 <telerik:RadGridView.Columns>
   <telerik:GridViewDataColumn Header="Designator"/>
   <telerik:GridViewDataColumn Header="Operator Name"/>
 </telerik:RadGridView.Columns>

 <telerik:RadGridView.RowDetailsTemplate>
  <DataTemplate>
   <StackPanel>
    <TextBlock Text="Item 1" />
    <TextBlock Text="Item 2" />
   </StackPanel>
  </DataTemplate>
 </telerik:RadGridView.RowDetailsTemplate>
</telerik:RadGridView>

Thank you.

1 Answer, 1 is accepted

Sort by
0
Sergey
Top achievements
Rank 1
Iron
answered on 26 Jul 2012, 05:43 PM
Got it!

Missing Column: <telerik:GridViewToggleRowDetailsColumn />

Thank you.
Tags
GridView
Asked by
Sergey
Top achievements
Rank 1
Iron
Answers by
Sergey
Top achievements
Rank 1
Iron
Share this question
or