Here is demo code:
<
div
id
=
"grid"
></
div
>
<
script
>
$("#grid").kendoGrid({
columns: [
{ field: "productName" },
{ field: "category", values: [
{ text: "Beverages", value: 1 },
{ text: "Food", value: 2 },
{ text: "Filter not working value", value: 0 }
] }
],
dataSource: [
{ productName: "Tea", category: 1 },
{ productName: "Ham", category: 2 },
{ productName: "Bread", category: 0 }
],
filterable: true
});
</
script
>
Replication steps:open filter menu for "category" column and pick "Filter not working value" (very important that it's value = 0)
Actual result:grid is empty
Expected result: grid is filtered to have the only row with product name "Bread"
Please help me understand what I'm doing wrong or confirm that it's a bug.