Hi,
I have a grid with single column "color":
[ {color:1}, {color:2}, {color:3} ]
[ {id: 1, name: "Red"}, {id: 2, name: "Blue"}, {id: 3, name: "Yellow"} ]
So the ComboBox displays the name of the color, and the value is the id of the color. Everything works fine so far. Now I want to use GridColumnMenuCheckboxFilter as the column filter. But the filter shows [1, 2, 3] as the options because that is all the values of the column. How to show the color names instead?
Thanks!
Jie