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

MultiSelect in custom filter

1 Answer 903 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Steve
Top achievements
Rank 1
Steve asked on 12 Apr 2016, 07:03 PM

How would I go about adding multi-select functionality to a custom filter?

columns.Bound(c => c.InventoryStatus).Title("Inventory Status").Filterable(filterable => filterable.UI("inventoryStatusFilter"));

function inventoryStatusFilter(element) {
    element.kendoDropDownList({
        dataSource: {
            transport: {
                read: "@Url.Action("FilterMenuCustomization_InventoryStatus")"
            }
        }
    });
}

Thanks in advance!

Steve.

 

 

1 Answer, 1 is accepted

Sort by
0
Dimiter Topalov
Telerik team
answered on 14 Apr 2016, 08:47 AM
Hello Steve,

You can consider the multi checkbox filtering option:

http://demos.telerik.com/kendo-ui/grid/filter-multi-checkboxes

If this does not fit your scenario, please be more specific of what exactly the desired functionality is and how would the Kendo UI widgets (beside the Grid) should be involved, so we can provide further and more to-the-point assitance.

Regards,
Dimiter Topalov
Telerik
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 Feedback Portal and vote to affect the priority of the items
Tags
Grid
Asked by
Steve
Top achievements
Rank 1
Answers by
Dimiter Topalov
Telerik team
Share this question
or