Skip to content
Advertisement

The value show in the multi-select function not properly

I have 2 problems in the multi-select function:

i)The first problem, I set the value if clicked the Show Volvo and Opel and Show Volvo and Saav buttons, will follow the value shown in the multi-select box. Now the error is if clicked the Show Volvo and Opel button, it can show the correct values, but if clicked the Show Volvo and Saav button, the value cannot show properly.

ii)The second problem, if I clicked the Show Volvo and Opel, it just can show the checked value in the multi-select box, the value of name cannot show in the multi-select box, for example, I need to show name Volvo, Opel like below this picture:

output

Below is my sample working coding:

JavaScript
JavaScript

Hope someone can guide me on how to solve this problem.

Advertisement

Answer

You can iterate through options inside your select-box and where value matches set prop('selected', true); and then use $('#cars').multiselect('refresh') to refresh your mutliselect .

Demo Code :

JavaScript
JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement