Hi,
I have a view that one cell can have a multiple content from two different property of the data model, I try some of the sample from documentation and have no success, any hint or guide to get this done
thank you.
my code snippet
I have a view that one cell can have a multiple content from two different property of the data model, I try some of the sample from documentation and have no success, any hint or guide to get this done
thank you.
my code snippet
<
telerik:GridViewDataColumn
Header
=
"Case Type"
DataMemberBinding
=
"{Binding CaseDetails}"
Style
=
"{DynamicResource ColumnTextCenter}"
>
<
telerik:GridViewDataColumn.CellEditTemplate
>
<
DataTemplate
>
<
Grid
>
<
Grid.RowDefinitions
>
<
RowDefinition
/>
<
RowDefinition
/>
</
Grid.RowDefinitions
>
<
TextBlock
Text
=
"{Binding CaseDetails[0].Type}"
/>
<
TextBlock
Text
=
"{Binding CaseDetails[0].LandArea}
Grid.Row
=
"1
FontStyle
=
"Italic"
/>
</
Grid
>
</
DataTemplate
>
</
telerik:GridViewDataColumn.CellEditTemplate
>
</
telerik:GridViewDataColumn
>