Completed
Last Updated: 10 Jun 2021 06:01 by ADMIN
Imported User
Created on: 20 May 2013 11:22
Category: UI for ASP.NET MVC
Type: Feature Request
2
Add maxSelectedItems to Multiselect on Html Helper ASP.NET MVC
I need configure in my Razor View, with my Multiselect helper, the maxselectedItems property (like others properties: MinLength, Filter,etc)
1 comment
Gagandeep
Posted on: 31 May 2013 10:59
 $("#mutliselect").kendoMultiSelect({
        dataTextField: "Name",
        dataValueField: "ID",
        filter: 'contains',
        placeholder: "select..",
        maxSelectedItems: 1, //only 1 or less items chould be selected
        dataSource: {
            transport: {
                read: "Controller/Action"
            }
        }

    });