summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-FE/client/bower_components/jqTree/_examples/07_autoscroll.html
blob: 1f3aff07568a67767a6e813ff33d022456cfd758 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
---
title: Javascript tree with autoscroll
layout: page
js: examples/autoscroll.js
css: example.css
---

<p id="nav">
    <a href="../06_autoescape/">&laquo; Example 6</a>
    <a href="../08_multiple_select/" class="next">Example 8 &raquo;</a>
</p>

<h1>Example 7 - autoscroll</h1>

<div id="scroll-container">
    <div id="tree1"></div>
</div>

<p>
    This is an example of autoscroll. The tree will scroll automatically if you drag an item outside of the tree.
    <br />
    Autoscroll will work automatically. There is no option for it.
</p>

<h3>html</h3>

{% highlight html %}
<div id="scroll-container">
    <div id="tree1"></div>
</div>
{% endhighlight %}

<h3>css</h3>

{% highlight css %}
#scroll-container {
  height: 200px;
  overflow-y: scroll;
  user-select: none;
}
{% endhighlight %}

<h3>js</h3>

{% highlight js %}
$('#tree1').tree({
    data: ExampleData.example_data
});
{% endhighlight %}