Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
60
UltraListView Multi Select Mode
posted

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.

Parents
  • 4618
    posted

    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 K
    Developer Support Engineer
    Infragistics, Inc.
    www.infragistics.com/support

    UltraListViewMultiSelect96886.zip
Reply Children