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
Hi Sree,
You are certainly welcome! If you have any other questions that I may assist you with, please let me know.
That works great for me too! I didn't know we could drag the mouse over the other items.
Thanks for your time on this,
It is no problem at all. I did verify that the multi-select behavior may be used by clicking on an item within the UltraListView and then dragging the mouse over neighboring items, while the left mouse button is held down; aside from using the Ctrl key and mouse combination, this is the only other multi-select feature supported, that I am aware of.
Was there another type of multi-select behavior that you were trying to achieve?