Is it possible to implement 'extended row selection' in the same manner as is implemented by File Explorer and the standard Windows listbox control? If so, is it possible to achieve an 'extended full row selection' that would handle the following use cases:
Hi,
I'm very confused by your questions. I tried to follow the steps you listed here, but in every case, I am getting the "Desired" result, not the "Actual" result you list here.
What version of the grid are you using?
The only property settings I applied to the grid were these:
private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e) { UltraGridLayout layout = e.Layout; UltraGridOverride ov = layout.Override; ov.SelectTypeRow = SelectType.Extended; ov.CellClickAction = CellClickAction.RowSelect; }