nexus site path corrected
[portal.git] / ecomp-portal-FE / client / bower_components / jqTree / _entries / 53_reload.md
1 ---
2 title: reload
3 name: functions-reload
4 ---
5
6 **function reload();**
7
8 **function reload(on_finished);**
9
10 Reload data from the server.
11
12 * Call `on_finished` when the data is loaded.
13
14 {% highlight js %}
15 $('#tree1').tree('reload');
16 {% endhighlight %}
17
18 {% highlight js %}
19 $('#tree1').tree('reload', function() {
20     console.log('data is loaded');
21 });
22 {% endhighlight %}