summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-FE/client/bower_components/jqTree/_entries/17_datafilter.md
blob: 90316af297bd31c6c6845d969923dae2f7c79ea8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
---
title: dataFilter
name: options-datafilter
---

Process the tree data from the server.

{% highlight js %}
$('#tree1').tree({
    dataUrl: '/my/data/',
    dataFilter: function(data) {
        // Example:
        // the server puts the tree data in 'my_tree_data'
        return data['my_tree_data'];
    }
});
{% endhighlight %}