I'm trying to replicate the "MultiSimple"(multiple selects in the listview without holding Ctrl key) mode functionality which we see in the WinForms listview with UltraListView. Can anyone help me figure this out.
Hi sgg,
You may enable the multi-selection behavior that you have described by modifying the SelectionType of the UltraListView to “Extended”.
Example: ultraListView1.ItemSettings.SelectionType = Infragistics.Win.UltraWinListView.SelectionType.Extended;
I have also constructed and attached a small sample wherein this behavior is produced, for reference.
If you have any questions at all regarding this approach or any further questions regarding this behavior, please let me know.
Sincerely,Chris KDeveloper Support EngineerInfragistics, Inc.www.infragistics.com/support
Hi Chris,
Thanks for the quick response! I've already set the SelectionType to Extended. It does allow me to select multiple items from the list when I hold the Ctrl key
The issue is, I want to be able to select without holding the Ctrl key.
I looked at the sample you sent me and looks like it does not allow the functionality which I mentioned.
Appreciate your time on this!!
Thanks,
Sree