Hello, Telerik team!
I'm stumbled into some little UI inconveniences using RadGridView.
I use checkbox column bound to IsSelected property of my Model.
Item source of RadGRidView is of ObservableCollection<Model> class:
when I want to check the checkbox, it takes three clicks to make it checked: first accordin row is selected, second click select a cell, and only on third click the box is checked.
I understand that it should be a lame problem, but nevertheless, it would be very kinf of you if you help me!
I'm stumbled into some little UI inconveniences using RadGridView.
I use checkbox column bound to IsSelected property of my Model.
Item source of RadGRidView is of ObservableCollection<Model> class:
<
controls3:RadGridView
x:Name
=
"Sports"
ShowGroupPanel
=
"False"
ItemsSource
=
"{Binding AllSports}"
AutoGenerateColumns
=
"False"
RowIndicatorVisibility
=
"Collapsed"
CanUserSelect
=
"False"
ScrollViewer.HorizontalScrollBarVisibility
=
"Disabled"
>
<
controls3:RadGridView.Columns
>
<
controls3:GridViewCheckBoxColumn
DataMemberBinding
=
"{Binding IsSelected}"
Header
=
"Chosen"
ForceCursor
=
"True"
IsThreeState
=
"False"
/>
<
controls3:GridViewDataColumn
Width
=
"239"
DataMemberBinding
=
"{Binding name}"
Header
=
"Name"
/>
</
controls3:RadGridView.Columns
>
</
controls3:RadGridView
>
I understand that it should be a lame problem, but nevertheless, it would be very kinf of you if you help me!