Multicombo Issue

Hello webix team,

Please refer this code snippet: https://snippet.webix.com/q7oe43f4

When user selects “All” option then all options including “All” should get select automatically without making use of suggest list.

Can we add dropdown symbol to multicombo?

Please provide me solution.

Hello @Pooja ,

To enable this functionality, you need to define the selectAll property with the true value in the dedicated suggest object and the corresponding field will be shown on the top of multicombo options:

 view:"multicombo",  
   ... 
   suggest: {
        selectAll: true,       
        body:{
          ...
        }
    }

More information: https://docs.webix.com/desktop__multicombo.html#selectingunselectingalloptions

Please check the sample: https://snippet.webix.com/yt1pbwc3

Hello Nastja,

Thanks for the given solution. Can we select all options without using suggest object?

You can create custom component
https://snippet.webix.com/uggpcg4e