This is a migrated thread and some comments may be shown as answers.

Adding Filter to TreeList resets filter on TreeView and ListView

1 Answer 75 Views
TreeList
This is a migrated thread and some comments may be shown as answers.
CS
Top achievements
Rank 2
CS asked on 02 Feb 2016, 08:12 AM

I'm currently facing the problem that I have a splitter in a tab of a tabstrip containing a treeview, listview and treelist. First I select an item from the treeview. The change trigges a filtering of the listview. Then I doubleclick an item of the listview that triggers a filter of the treelist. At the same time the filter/selection of the treeview and listview resets and I have no idea why. And it happens as soon as I do this:

var f = $("#treelist").getKendoTreeList().dataSource;
f.filter(
    {
        "field": "Status",
        "operator": "eq",
        "value": "!"
    }
);

1 Answer, 1 is accepted

Sort by
0
CS
Top achievements
Rank 2
answered on 02 Feb 2016, 08:36 AM

Found the issue, there was some overseen databound function.

can be deleted

Tags
TreeList
Asked by
CS
Top achievements
Rank 2
Answers by
CS
Top achievements
Rank 2
Share this question
or