This question is locked. New answers and comments are not allowed.
Hi,
I have a Grid which displays a selected fields of an object... The code snippet for grid is as follows...
I also have a rowdetails template as below using which I can display some additional fields of the same itemsource...
I want to achieve the same thing using a child grid ,Iis that possible...? I tried the three examples given in the demos but not able to do what i actually wanted.... Any help would be appreciated..
Thanks and Regds.,
Ramya
I have a Grid which displays a selected fields of an object... The code snippet for grid is as follows...
<telerik:RadGridView RowDetailsVisibilityMode="VisibleWhenSelected" Name="radGridViewCountry" Height="300" ItemsSource="{Binding Mode=TwoWay, Path=CountrySource}" AutoGenerateColumns="False" SelectionMode="Single" >I also have a rowdetails template as below using which I can display some additional fields of the same itemsource...
<telerik:RadGridView.RowDetailsTemplate> <DataTemplate> <StackPanel Orientation="Horizontal" Margin="10,10,10,10"> <TextBlock Text="ID: " /> <TextBlock Text="{Binding ID}" /> <TextBlock Text="Country: " /> <TextBlock Text="{Binding Name}" /> </StackPanel> </DataTemplate> </telerik:RadGridView.RowDetailsTemplate>I want to achieve the same thing using a child grid ,Iis that possible...? I tried the three examples given in the demos but not able to do what i actually wanted.... Any help would be appreciated..
Thanks and Regds.,
Ramya