Hello,
I attached event handler for GridViewRow Selected event by eventSetter.
But i getting "Handler type is not valid" exception.
What should be the right handler type for this event?
Basicly what I'm trying to do is after the data is loaded to set programaticly the second colomn of Grid to current and in edit mode.
Additionaly on arrow navigartion Up/Down current cell should be updated to the up/down cell in the same colomn and always current cell should be in edit mode.
Thank you
I attached event handler for GridViewRow Selected event by eventSetter.
But i getting "Handler type is not valid" exception.
void Row_Selected(object sender, RoutedEventArgs e){} |
<Style TargetType="telerik:GridViewRow"> |
<EventSetter Event="Selected" Handler="Row_Selected"/> |
</Style> |
Basicly what I'm trying to do is after the data is loaded to set programaticly the second colomn of Grid to current and in edit mode.
Additionaly on arrow navigartion Up/Down current cell should be updated to the up/down cell in the same colomn and always current cell should be in edit mode.
Thank you