FilterBy with Connector loaded data

The makeFilter works fine on my grid with dynamically loaded data, but any attempt to use filterBy on any column results in a “row is null” error on this line of the js

 _get_cell_value:function(row, ind, method){if (row._locator){if (this._c_order)ind=this._c_order[ind];return row._locator.call(this, row.data, ind);};return this.cells3(row, ind)[method ? method : "getValue"]();}

Is it possible to use filterBy on a grid with connector?

Greg

Client side filtering can be applied only to the grids which are fully loaded.
If you are using grid with dynamical loading you need to user server side filtering.