I want from a button hide/show the ranking > 5 (hidden column) and also use filter in header.
I have implemented a little example that filter ranking > 5 when I click on a button but I don’t know how to implement to apply a AND between this filter and the others. http://webix.com/snippet/8dfb41a1
I have the same issue. That can be nice if we can get whole row.
The workaround is to create a column with all field value concatenate with separator (if the rule is simple you can register multiple filter).
@EricR thanks for the workaround, in my case each row is complex and big object so copying it to itself is not very good idea. @intregal I know about filter() method, what I’m looking for is way to register the filter using registerFilter() for it to be used along with the standard filters (ie. the method filterByAll()
@maug
Another method I have made but only available if data is not modified, is to put the row content in the attribut of the row and use this attribut as filter.
row[“myRow”] = row;