MVC ListBoxFor multiselection without ctrl button

asp.net-mvc, razor

Solution

I've used Bootstrap Multiselect before, with great success.

If it cannot be a drop down, use this Checkbox list instead.

Problem

I have a listboxfor in my application which works greats. But to make multiple selection I need to press ctrl and click on the item. How can I change this behavior, so every time I click on the item in the list it selects it and when press again it deselects but only one of the selected items. My listbox: ``` @Html.ListBoxFor(m => m.selectedCharts, new SelectList(@Model.Graphs.ToList() ) , new { @class = "select_change" } ) ``` Or maybe I should use different control for this purpose? Many thanks

Original source