AD
Administrator
Syncfusion Team
July 5, 2005 09:07 PM UTC
The grid will not raise the SelectionsChanging/Changed events, but you can raise the events yourself by calling
this.gridControl1.Model.RaiseSelectionChanging / this.gridControl1.Model.RaiseSelectionChanged. Your datasource would have to track its selections and when they are cleared because the user clicks on the grid without a ctl or shift, then you could call these methods to raise the event you want to see.
AD
Administrator
Syncfusion Team
July 5, 2005 09:23 PM UTC
I kind of thought that is what I would have to do. I just thought that there might be a short-cut. Thanks for you help.