Any way to change tagMode in Multicombo according to the number of items selected. Let us say if I select 5 items or more, it will show 5 items(s) select.
And if less it will show each item individually.
Hello Reqore,
To change tagMode in multicombo according to the number of selected items use onChange event.
And depending on the length of the newValue parameter and this.config.tagMode
flag you can change this tagMode property. Note that it’s also important to refresh the component only when it is necessary.
Please take a look at the example: Code Snippet
1 Like
Hi Natalia,
This is what I was looking for.
Thanks a lot !