Hi,
(I'm using the Telerik version 2014.1.331.45)
I define a RadGridView with an another RadGridView Inside its HierarchyChildTemplate, like this :
If the NewRowPosition is set to bottom the "Click to add a new item" don't appear, if set to Top its work.
Do you have a workaround to be able to use bottom instead Top ?
Thanks,
Luc
(I'm using the Telerik version 2014.1.331.45)
I define a RadGridView with an another RadGridView Inside its HierarchyChildTemplate, like this :
<
telerik:RadGridView
ItemsSource
=
"{Binding Customers}"
GroupRenderMode
=
"Flat"
AutoGenerateColumns
=
"False"
NewRowPosition
=
"Bottom"
>
<
telerik:RadGridView.ChildTableDefinitions
>
<
telerik:GridViewTableDefinition
/>
</
telerik:RadGridView.ChildTableDefinitions
>
<
telerik:RadGridView.HierarchyChildTemplate
>
<
DataTemplate
>
<
Grid
>
<!-- If NewRowPosition = Top the row appear, otherwise hidden-->
<
telerik:RadGridView
ItemsSource
=
"{Binding Orders}"
GroupRenderMode
=
"Flat"
NewRowPosition
=
"Bottom"
>
</
telerik:RadGridView
>
</
Grid
>
</
DataTemplate
>
</
telerik:RadGridView.HierarchyChildTemplate
>
<
telerik:RadGridView.Columns
>
<
telerik:GridViewDataColumn
DataMemberBinding
=
"{Binding FirstName}"
Header
=
"Prenom"
/>
<
telerik:GridViewDataColumn
DataMemberBinding
=
"{Binding LastName}"
Header
=
"Nom"
/>
</
telerik:RadGridView.Columns
>
</
telerik:RadGridView
>
If the NewRowPosition is set to bottom the "Click to add a new item" don't appear, if set to Top its work.
Do you have a workaround to be able to use bottom instead Top ?
Thanks,
Luc