Hi,
I'm trying to cancel row selection event. How can i do it?
Because when SelectionChanged event is fired, I can't cancel the event.
I tried to do something like
Thanks
PS : I use RadControls for WinForms Q3 2008
I'm trying to cancel row selection event. How can i do it?
Because when SelectionChanged event is fired, I can't cancel the event.
I tried to do something like
| private void RadGridView_Summary_SelectionChanged(object sender, EventArgs e) |
| { |
| GridViewRowInfo lastRow = this.RadGridView_Summary.Rows[this.RadGridView_Summary.Rows.Count - 1]; |
| lastRow.IsSelected = true; |
| /* only get */ |
| /* lastRow.IsCurrent = true;*/ |
| } |
Thanks
PS : I use RadControls for WinForms Q3 2008