複数選択ボックスで剣道グリッドをフィルタリングしようとしています。私は多かれ少なかれこのセットアップで serverFiltering がオンになっているグリッドを持っています:
// this is in the grid configuration
columns: [
{
title: "Name",
width: 160,
field: mem_ORD_EditieTitel,
filterable: {
ui: multiSelect
}
}, ...
]
// and the function corresponding to the filterable option
function multiSelect(element)
{
var multi = element.kendoMultiSelect({
placeholder: "Select editions",
dataSource: remoteDataSource,
dataTextField: "mem_ORD_EditieTitel",
dataValueField: "mem_ORD_EditieTitel",
optionLabel: "--Select Value--"
}).data('kendoMultiSelect');
}
問題は、複数の値を選択すると、最初に選択した項目のみが要求に含まれることです。とにかくこれを修正する方法はありますか?それとも、剣道グリッドにはこれがありませんか? 例えば:
filter[filters][0][field]:mem_ORD_EditieTitel
filter[filters][0][operator]:eq
filter[filters][0][value]:SomeTitle
filter[logic]:and
ありがとう