I have a grid with one column using the new filterable.multi = true. Given a certain set of data in the grids data source, I can open the filter and see the multi checkboxes for all values in that column. If I programmatically change the value in that column of one of the rows using dataSource.at(), the filter menu's options do not update. For example, if I have a grid with a Name column with three rows: Brad, Mark, John. I open the filter menu and see options for Brad, Mark and John. If I then change Mark to David, and open the filter menu I will still see options for Brad, Mark, and John. However, if I add a new row using dataSource.add() function, it does update the filter options.
Is there a way to force the filter options to update after an edit?
This DOJO recreates the issue. First, open the filter menu on Name column, see correct options for original data. Press update button, and open filter again. See no change to options. Then press Add button. Open filter menu again, observe options have been updated.
http://dojo.telerik.com/@david.ballenger/uZeGI