If I set up a multi:true filterable column with a datasource on the grid, the datasource returns an array of objects:
[{ code: "A", description: "DescriptionA"}, {code: "B", description: "DescriptionB"}]If I set filterable:
<p>{</p><p>multi: true,</p><p>field: "description"</p><p>}</p>But when I select a few and click filter, how can I get it to create the filter object using code rather than description?
