Pooja
April 29, 2019, 4:39pm
1
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.
Nastja
April 29, 2019, 4:46pm
2
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
Pooja
April 29, 2019, 5:20pm
3
Hello Nastja,
Thanks for the given solution. Can we select all options without using suggest object?
Nastja
April 29, 2019, 5:29pm
4