We are using ListBoxSelectionMode other than NONE option. SO still we are unable to handle that.
Also, we have two grid controls with same table options properties. I mean ListBoxSelectionMode other than NONE and TableOptions.AllowSelections to NONE. But in one control we are able to select multiple rows using SHIFT/Control keys and mouse clicks. In other control always only one row. ANy idea why is this happening..we have even done diff usiing tools but could not find any.
Rgds
Rajani Kanth
>What record selection are you using, the one iherited from GridControlBase (where you set TableOptions.AllowSelections to somthing other than None) or the special selection support in GridGroupingCOntrol (where you set TableOptions.AllowSelections to None and tableOptions.ListBoxSelectionMode to something other than None).
>
>If you are using the first type of selection support, you can catch the mouseup by handling the this.gridGroupingControl1.TableModel.SelectionChanged (or Changing) event.
>
>private void TableModel_SelectionChanged(object sender, GridSelectionChangedEventArgs e)
>{
> if(e.Reason == GridSelectionReason.MouseUp)
> {
> Console.WriteLine("TableModel_SelectionChanged");
> }
>}
>
>
>For the second type of selection, I could not see an obvious way to catch the mouse up.