This is a migrated thread and some comments may be shown as answers.

[Solved] MULTISELECT DROPDOWNLIST IN MVC3

3 Answers 131 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
hemant
Top achievements
Rank 1
hemant asked on 14 Sep 2011, 07:48 PM
Hello ,
I need a complete code for multiselect dropdownlist in mvc3. multiselect dropdownlist means that we can select more than one value at a time. Can anybody help?

Thanks in advance.

From Hemant Kumar

3 Answers, 1 is accepted

Sort by
0
Georgi Tunev
Telerik team
answered on 15 Sep 2011, 11:22 AM
Hello Hemant,

The combobox component does not provide such functionality, but you can check the AutoComplete component that has multiple values support.


All the best,
Georgi Tunev
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Udhaya
Top achievements
Rank 1
answered on 25 Jul 2012, 10:00 AM


Hello hemand

In mvc to give multiselect you must download multiselect.js jquery file

then

in Html page,

<div>
                    <select id="name" class="multiSelect" multiple="multiple" size="3">
                    <option value ="0">orange</option>
                    <option value="1">apple</option>
                    <option value="2">potato</option>
                    </select>
                    </div>

Jquery file:
$("#name").multiSelect(
          {
               select_all_min: 1,
              no_selection: "Fruits",
               selected_text: "selected"
                        });

Dont forget to put jquery file and css file into master page.
0
hemant
Top achievements
Rank 1
answered on 25 Jul 2012, 11:33 AM
have you any link for download multiselect.js jquery file...
Tags
ComboBox
Asked by
hemant
Top achievements
Rank 1
Answers by
Georgi Tunev
Telerik team
Udhaya
Top achievements
Rank 1
hemant
Top achievements
Rank 1
Share this question
or