Hello,
At the last release i have some problems with cell edit template. If i use my own cell edit template(first code block) the "tab" and "enter" buttons does not make the cell editable. It only focuses on the cell.
But if i don't make an edit template there is no such problem.(second code block)
Also at the cell edit template i need to make double click to go in edit mode. But at default only one click.
P.S : If i use the keyboard up/down arrows to change the value there is no problem. The problem is i can not enter numbers from the keyboad
At the last release i have some problems with cell edit template. If i use my own cell edit template(first code block) the "tab" and "enter" buttons does not make the cell editable. It only focuses on the cell.
But if i don't make an edit template there is no such problem.(second code block)
Also at the cell edit template i need to make double click to go in edit mode. But at default only one click.
P.S : If i use the keyboard up/down arrows to change the value there is no problem. The problem is i can not enter numbers from the keyboad
<
telerik:GridViewDataColumn
TextAlignment
=
"Right"
Header
=
"Fatura Fiyatı"
IsReadOnly
=
"False"
DataMemberBinding
=
"{Binding IncomingBrutPrice}"
DataFormatString
=
"{}{0:F4}"
>
<
telerik:GridViewDataColumn.CellEditTemplate
>
<
DataTemplate
>
<
telerik:RadNumericUpDown
Name
=
"NumericBrutPrice"
Value
=
"{Binding Path=IncomingBrutPrice, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
ValueChanged
=
"NumericBrutPrice_ValueChanged"
></
telerik:RadNumericUpDown
>
</
DataTemplate
>
</
telerik:GridViewDataColumn.CellEditTemplate
>
</
telerik:GridViewDataColumn
>
<
telerik:GridViewDataColumn
IsGroupable
=
"False"
DataMemberBinding
=
"{Binding ItemTotalPrice}"
Header
=
"Toplam Fiyat"
Width
=
"100"
DataFormatString
=
"{}{0:f4}"
>
</
telerik:GridViewDataColumn
>