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
830
igCombo with multi-select - know if entire combo is selected or not
posted

Hi,

I am using igCombo with multi-select.

Is there an infragistics method or property way where I can find if all the items in the list are selected?

Thanks.

  • 845
    Offline posted

    Hello jconning,

    Thank you for contacting Infragistics Developer Support!

    There isn't a readily available property/method but the combo API provides tools which can deal with your scenario.

    You can use the igCombo selectedItems method to get the array of selected items in the combo and compare its length to the length of the listItems method, which returns the

    number of rendered elements in the combo list.

    However be mindful that if you use virtualization with the combo the listItems method will always return a fixed number (usually the visibleItems property) so in that case

    you should compare the selectedItems length to the combo's dataSource dataView length.

    Feel free to contact me for further information.