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
750
Show custom text at the input field when multiple items are selected.
posted

Hi,

I'm using an igCombo control with the multiSelection option. When multiple items are selected the input field shows all selected items separated by comma.
Is it possible to change that text to something like 'n items selected'. I tried using the "text" method, but that clears the selection.

Parents
No Data
Reply
  • 16310
    Offline posted

    Hello Robin,

    Thank you for posting in the Infragistics community !

    I suggest that you use jQuery to set the value for the input field using .val(). This will change the text in the field and will NOT clear the selection:

    $(".ui-igcombo-field").val("some text")

    Please let me know if you have any further questions on the matter.

Children