This question is locked. New answers and comments are not allowed.
Is it possible for commands to be attached to row selections? This would then be listened for in the viewmodel. What I need to do is when a user clicks a row then navigate to a different page, based on an item in the row selected. I'd rather not have a button column in the grid as its already a very wide grid.
Thanks
E.g. something like:
Thanks
E.g. something like:
<
telerik:RadGridView x:Name="grid" ItemsSource="{Binding vmProperty}" AutoGenerateColumns="False"
IsReadOnly="True" SelectionUnit="FullRow"
local
:GridViewSelectedIndexChanged.Command="{Binding gridSelectedRowChanged}"
local:GridViewSelectedIndexChanged.CommandParameter="{Binding RelativeSource={RelativeSource Self}, Path=SelectedItem}"
>