This question is locked. New answers and comments are not allowed.
So with the ajax controls they have the RadListBox where you can enable checkboxes for MultiSelection. I want to achieve this same thing with MVC. I would prefer a ListBox however if this is possible with a dropdown or combobox I think I can make that work.
This is what I have now but I would prefer to use a telerik control if possible.
This is what I have now but I would prefer to use a telerik control if possible.
<%
= Html.ListBox("ManufacturerList", new MultiSelectList(ViewData["Manufacturers"] as IList, "CompanyID", "Name"))%>
This however is not ideal because I don't want the client to have to hold control to select multiple items in the list.
Any help would be appreciated.
Thanks,
Justin