filtering -updating the items in the select list.

Hi,
When a filter is set on the dataTable via the header property say selectFilter, how do I get the selectFilterList to update itself as I update/edit values in the grid.

Hello,

Webix datatable features a dedicated method to meet this situation, namely, the refreshFilter:

You can trigger it on any suitable event, e.g. the Datastore onStoreUpdated event will track editing/adding/removing data items from the datatable:

on:{
  'data->onStoreUpdated':function(id, data){
      this.refreshFilter("title");
    }
 }

http://webix.com/snippet/9033e5ab

Brilliant!.

Thanks.