I have a column with values like val1,val2,val3...val10
and each value belongs to a category/group say
{
"group1": [
"val1",
"val6",
"val9"
],
"group2": [
"val3",
"val5",
"val8"
]
}
and I need to create a kendo grid drop down filter and the dropdown will contain group names and on select it will filter with the values the group has. I did a few research and found this thread but I want to filter with category.