Hi,
Is there an easy way (without making a full template) to customise the insert row ?
I've set CanInsertRows and ShowInsertRow to true and ive got a row with the text "Click here to add a new item" as the first row. I would prefer toe have an empty row at the end representing the new row...
Is there an easy way (without making a full template) to customise the insert row ?
I've set CanInsertRows and ShowInsertRow to true and ive got a row with the text "Click here to add a new item" as the first row. I would prefer toe have an empty row at the end representing the new row...
<
trk:RadGridView
x:Name
=
"tblSanctDecisMed"
Height
=
"130"
trkT:StyleManager.Theme
=
"Windows7"
AutoGenerateColumns
=
"False"
RowIndicatorVisibility
=
"Visible"
Width
=
"682"
Margin
=
"10"
HorizontalAlignment
=
"Left"
ScrollViewer.VerticalScrollBarVisibility
=
"Visible"
ReorderColumnsMode
=
"None"
ShowGroupPanel
=
"false"
ItemsSource
=
"{Binding Path=MembresEquipe}"
CanUserDeleteRows
=
"False"
CanUserFreezeColumns
=
"False"
CanUserInsertRows
=
"True"
CanUserReorderColumns
=
"False"
CanUserSortColumns
=
"True"
ShowInsertRow
=
"True"
IsBusy
=
"False"
IsScrolling
=
"False"
>
<
trk:RadGridView.Columns
>
<
trk:GridViewDataColumn
Header
=
"Matricule"
Width
=
"125"
DataMemberBinding
=
"{Binding Path=NoMatricule}"
IsFilterable
=
"False"
IsGroupable
=
"False"
/>
<
trk:GridViewDataColumn
Header
=
"Nom/Prénom"
Width
=
"*"
DataMemberBinding
=
"{Binding Path=NomEmploye}"
IsFilterable
=
"False"
IsGroupable
=
"False"
IsReadOnly
=
"True"
/>
</
trk:RadGridView.Columns
>
</
trk:RadGridView
>