Looking at the Slickgrid examples and using Google Chrome, I’m setting a breakpoint on the filter to see what’s going on internally. The breakpoint works fine on line 87 http://mleibman.github.com/SlickGrid/examples/example-header-row.html
but it doesn’t work on line 143
http://mleibman.github.com/SlickGrid/examples/example4-model.html
Why not?
Compiled Filter.
Line 197 in Example 4:
dataView = new Slick.Data.DataView({ inlineFilters: true });When the dataView is initalized, the inlineFilters flag causes the dataView to “compile” the filter, so the original filter function isn’t called. The new “compiled” function is used.
See line 201 and 466 in slick.dataview.js for code on Complied Filters.