Not sure if doing something wrong but mouse double click input bindings does not appear to work on the grid view (if I hook up an event it works, but don't really want to have event code behind in view:) is this suposed to function? NB using .NET 4
I should mention that this works on the header cell to the top left of the control but not the actual data cells themselves - and when the input bindings are against the <telerik:GridViewDataColumn.InputBindings> it does not work either
I should mention that this works on the header cell to the top left of the control but not the actual data cells themselves - and when the input bindings are against the <telerik:GridViewDataColumn.InputBindings> it does not work either
<
telerik:RadGridView
x:Name
=
"ResultsView"
IsReadOnly
=
"True"
ItemsSource
=
"{Binding Path=Dossiers,Mode=OneWay}"
AutoGenerateColumns
=
"False"
SelectedItem
=
"{Binding CurrentDossier, Mode=OneWayToSource}"
Grid.Column
=
"0"
Grid.Row
=
"1"
>
<
telerik:RadGridView.InputBindings
>
<
MouseBinding
MouseAction
=
"LeftDoubleClick"
Command
=
"{Binding SearchCommand}"
CommandParameter
=
"{Binding ElementName=ResultsView,Path=SelectedCells,Mode=OneWay}"
></
MouseBinding
>
</
telerik:RadGridView.InputBindiIngs
>