treegrid filtering

Hi is this scenario possible:

I’ve a treegrid with 3 filters, 1 text filter and 2 combobox filters and I would like to the first combobox depend on the results of the first filtering

is that possible? how?

Unfortunately such feature is not supported.

will this feature be supported?

Such feature won’t be enabled in the future, but you can enable it manually.

Please, try to open dhtmlxgrid_filter.js
Find the following string:

var col=this._f_rowsBuffer||this.rowsBuffer;

and replace it with

var col=this.rowsBuffer;

Also you will have to add in your code:

grid.attachEvent("onFilterEnd", function(elements){ grid.refreshFilters() });