After I get the response from ajax call I assign them as:
grid.getColumn({ dataIndx: key }).filter.options = response[ key ];
But I need to manipulate the values before assigning them (each , separated value as own option).
Ex of array element:
{col1: "value1, value2, value3"}
...I need the as single array elements {col1: "value1} etc
How would I best do this?