Hi,
I have GridViewDataColumn with a edit template containing a com:
<telerik:RadButton Command="{Binding DoSomethingCommand}" Focusable="False"</telerik:RadButton>
My button command calls a command hander "MyViewModel.OnDoSomething" method in ViewModel attached to RadGridView row, but I am unable to figure out how to close edit mode after my handler is called. I tried to call CommitEdit() from Click() handler attached to button above. After adding click handler my "MyViewModel.OnDoSomething" is not called anymore.
I could fire new event from MyViewModel.OnDoSomething and intercept this event in View and call CommitEdit from there, but maybe there is a simpler way?
Thanks,
Ćukasz