Newer
Older
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
# Bootstrap Tree View
---

[](https://www.npmjs.com/package/bootstrap-treeview)
[](https://travis-ci.org/jonmiles/bootstrap-treeview)
A simple and elegant solution to displaying hierarchical tree structures (i.e. a Tree View) while leveraging the best that Twitter Bootstrap has to offer.

## Dependencies
Where provided these are the actual versions bootstrap-treeview has been tested against.
- [Bootstrap v3.3.4 (>= 3.0.0)](http://getbootstrap.com/)
- [jQuery v2.1.3 (>= 1.9.0)](http://jquery.com/)
## Getting Started
### Install
You can install using bower (recommended):
```javascript
$ bower install bootstrap-treeview
```
or using npm:
```javascript
$ npm install bootstrap-treeview
```
or [download](https://github.com/jonmiles/bootstrap-treeview/releases/tag/v1.2.0) manually.
### Usage
Add the following resources for the bootstrap-treeview to function correctly.
```html
<!-- Required Stylesheets -->
<link href="bootstrap.css" rel="stylesheet">
<!-- Required Javascript -->
<script src="jquery.js"></script>
<script src="bootstrap-treeview.js"></script>
```
The component will bind to any existing DOM element.
```html
<div id="tree"></div>
```
Basic usage may look something like this.
```javascript
function getTree() {
// Some logic to retrieve, or generate tree structure
return data;
}
$('#tree').treeview({data: getTree()});
```
## Data Structure
In order to define the hierarchical structure needed for the tree it's necessary to provide a nested array of JavaScript objects.
Example
```javascript
var tree = [
{
text: "Parent 1",
nodes: [
{
text: "Child 1",
nodes: [
{
text: "Grandchild 1"
},
{
text: "Grandchild 2"
}
]
},
{
text: "Child 2"
}
]
},
{
text: "Parent 2"
},
{
text: "Parent 3"
},
{
text: "Parent 4"
},
{
text: "Parent 5"
}
];
```
At the lowest level a tree node is a represented as a simple JavaScript object. This one required property `text` will build you a tree.
```javascript
{
text: "Node 1"
}
```
If you want to do more, here's the full node specification
```javascript
{
text: "Node 1",
icon: "glyphicon glyphicon-stop",
selectedIcon: "glyphicon glyphicon-stop",
color: "#000000",
backColor: "#FFFFFF",
href: "#node-1",
selectable: true,
state: {
checked: true,
disabled: true,
expanded: true,
selected: true
},
tags: ['available'],
nodes: [
{},
...
]
}
```
### Node Properties
The following properties are defined to allow node level overrides, such as node specific icons, colours and tags.
#### text
`String` `Mandatory`
The text value displayed for a given tree node, typically to the right of the nodes icon.
#### icon
`String` `Optional`
The icon displayed on a given node, typically to the left of the text.
For simplicity we directly leverage [Bootstraps Glyphicons support](http://getbootstrap.com/components/#glyphicons) and as such you should provide both the base class and individual icon class separated by a space.
By providing the base class you retain full control over the icons used. If you want to use your own then just add your class to this icon field.
#### selectedIcon
`String` `Optional`
The icon displayed on a given node when selected, typically to the left of the text.
#### color
`String` `Optional`
The foreground color used on a given node, overrides global color option.
#### backColor
`String` `Optional`
The background color used on a given node, overrides global color option.
#### href
`String` `Optional`
Used in conjunction with global enableLinks option to specify anchor tag URL on a given node.
#### selectable
`Boolean` `Default: true`
Whether or not a node is selectable in the tree. False indicates the node should act as an expansion heading and will not fire selection events.
#### state
`Object` `Optional`
Describes a node's initial state.
#### state.checked
`Boolean` `Default: false`
Whether or not a node is checked, represented by a checkbox style glyphicon.
#### state.disabled
`Boolean` `Default: false`
Whether or not a node is disabled (not selectable, expandable or checkable).
#### state.expanded
`Boolean` `Default: false`
Whether or not a node is expanded i.e. open. Takes precedence over global option levels.
#### state.selected
`Boolean` `Default: false`
Whether or not a node is selected.
#### tags
`Array of Strings` `Optional`
Used in conjunction with global showTags option to add additional information to the right of each node; using [Bootstrap Badges](http://getbootstrap.com/components/#badges)
### Extendible
You can extend the node object by adding any number of additional key value pairs that you require for your application. Remember this is the object which will be passed around during selection events.
## Options
Options allow you to customise the treeview's default appearance and behaviour. They are passed to the plugin on initialization, as an object.
```javascript
// Example: initializing the treeview
// expanded to 5 levels
// with a background color of green
$('#tree').treeview({
data: data, // data is not optional
levels: 5,
backColor: 'green'
});
```
You can pass a new options object to the treeview at any time but this will have the effect of re-initializing the treeview.
### List of Options
The following is a list of all available options.
#### data
Array of Objects. No default, expects data
This is the core data to be displayed by the tree view.
#### backColor
String, [any legal color value](http://www.w3schools.com/cssref/css_colors_legal.asp). Default: inherits from Bootstrap.css.
Sets the default background color used by all nodes, except when overridden on a per node basis in data.
#### borderColor
String, [any legal color value](http://www.w3schools.com/cssref/css_colors_legal.asp). Default: inherits from Bootstrap.css.
Sets the border color for the component; set showBorder to false if you don't want a visible border.
#### checkedIcon
String, class names(s). Default: "glyphicon glyphicon-check" as defined by [Bootstrap Glyphicons](http://getbootstrap.com/components/#glyphicons)
Sets the icon to be as a checked checkbox, used in conjunction with showCheckbox.
#### collapseIcon
String, class name(s). Default: "glyphicon glyphicon-minus" as defined by [Bootstrap Glyphicons](http://getbootstrap.com/components/#glyphicons)
Sets the icon to be used on a collapsible tree node.
#### color
String, [any legal color value](http://www.w3schools.com/cssref/css_colors_legal.asp). Default: inherits from Bootstrap.css.
Sets the default foreground color used by all nodes, except when overridden on a per node basis in data.
#### emptyIcon
String, class name(s). Default: "glyphicon" as defined by [Bootstrap Glyphicons](http://getbootstrap.com/components/#glyphicons)
Sets the icon to be used on a tree node with no child nodes.
#### enableLinks
Boolean. Default: false
Whether or not to present node text as a hyperlink. The href value of which must be provided in the data structure on a per node basis.
#### expandIcon
String, class name(s). Default: "glyphicon glyphicon-plus" as defined by [Bootstrap Glyphicons](http://getbootstrap.com/components/#glyphicons)
Sets the icon to be used on an expandable tree node.
#### highlightSearchResults
Boolean. Default: true
Whether or not to highlight search results.
#### highlightSelected
Boolean. Default: true
Whether or not to highlight the selected node.
#### levels
Integer. Default: 2
Sets the number of hierarchical levels deep the tree will be expanded to by default.
#### multiSelect
Boolean. Default: false
Whether or not multiple nodes can be selected at the same time.
#### nodeIcon
String, class name(s). Default: "glyphicon glyphicon-stop" as defined by [Bootstrap Glyphicons](http://getbootstrap.com/components/#glyphicons)
Sets the default icon to be used on all nodes, except when overridden on a per node basis in data.
#### onhoverColor
String, [any legal color value](http://www.w3schools.com/cssref/css_colors_legal.asp). Default: '#F5F5F5'.
Sets the default background color activated when the users cursor hovers over a node.
#### selectedIcon
String, class name(s). Default: "glyphicon glyphicon-stop" as defined by [Bootstrap Glyphicons](http://getbootstrap.com/components/#glyphicons)
Sets the default icon to be used on all selected nodes, except when overridden on a per node basis in data.
#### searchResultBackColor
String, [any legal color value](http://www.w3schools.com/cssref/css_colors_legal.asp). Default: undefined, inherits.
Sets the background color of the selected node.
#### searchResultColor
String, [any legal color value](http://www.w3schools.com/cssref/css_colors_legal.asp). Default: '#D9534F'.
Sets the foreground color of the selected node.
#### selectedBackColor
String, [any legal color value](http://www.w3schools.com/cssref/css_colors_legal.asp). Default: '#428bca'.
Sets the background color of the selected node.
#### selectedColor
String, [any legal color value](http://www.w3schools.com/cssref/css_colors_legal.asp). Default: '#FFFFFF'.
Sets the foreground color of the selected node.
#### showBorder
Boolean. Default: true
Whether or not to display a border around nodes.
#### showCheckbox
Boolean. Default: false
Whether or not to display checkboxes on nodes.
#### showIcon
Boolean. Default: true
Whether or not to display a nodes icon.
#### showTags
Boolean. Default: false
Whether or not to display tags to the right of each node. The values of which must be provided in the data structure on a per node basis.
#### uncheckedIcon
String, class names(s). Default: "glyphicon glyphicon-unchecked" as defined by [Bootstrap Glyphicons](http://getbootstrap.com/components/#glyphicons)
Sets the icon to be as an unchecked checkbox, used in conjunction with showCheckbox.
## Methods
Methods provide a way of interacting with the plugin programmatically. For example, expanding a node is possible via the expandNode method.
You can invoke methods in one of two ways, using either:
#### 1. The plugin's wrapper
The plugin's wrapper works as a proxy for accessing the underlying methods.
```javascript
$('#tree').treeview('methodName', args)
```
> Limitation, multiple arguments must be passed as an array of arguments.
#### 2. The treeview directly
You can get an instance of the treeview using one of the two following methods.
```javascript
// This special method returns an instance of the treeview.
$('#tree').treeview(true)
.methodName(args);
// The instance is also saved in the DOM elements data,
// and accessible using the plugin's id 'treeview'.
$('#tree').data('treeview')
.methodName(args);
```
> A better approach, if you plan a lot of interaction.
### List of Methods
The following is a list of all available methods.
#### checkAll(options)
Checks all tree nodes
```javascript
$('#tree').treeview('checkAll', { silent: true });
```
Triggers `nodeChecked` event; pass silent to suppress events.
#### checkNode(node | nodeId, options)
Checks a given tree node, accepts node or nodeId.
```javascript
$('#tree').treeview('checkNode', [ nodeId, { silent: true } ]);
```
Triggers `nodeChecked` event; pass silent to suppress events.
#### clearSearch()
Clear the tree view of any previous search results e.g. remove their highlighted state.
```javascript
$('#tree').treeview('clearSearch');
```
Triggers `searchCleared` event
#### collapseAll(options)
Collapse all tree nodes, collapsing the entire tree.
```javascript
$('#tree').treeview('collapseAll', { silent: true });
```
Triggers `nodeCollapsed` event; pass silent to suppress events.
#### collapseNode(node | nodeId, options)
Collapse a given tree node and it's child nodes. If you don't want to collapse the child nodes, pass option `{ ignoreChildren: true }`.
```javascript
$('#tree').treeview('collapseNode', [ nodeId, { silent: true, ignoreChildren: false } ]);
```
Triggers `nodeCollapsed` event; pass silent to suppress events.
#### disableAll(options)
Disable all tree nodes
```javascript
$('#tree').treeview('disableAll', { silent: true });
```
Triggers `nodeDisabled` event; pass silent to suppress events.
#### disableNode(node | nodeId, options)
Disable a given tree node, accepts node or nodeId.
```javascript
$('#tree').treeview('disableNode', [ nodeId, { silent: true } ]);
```
Triggers `nodeDisabled` event; pass silent to suppress events.
#### enableAll(options)
Enable all tree nodes
```javascript
$('#tree').treeview('enableAll', { silent: true });
```
Triggers `nodeEnabled` event; pass silent to suppress events.
#### enableNode(node | nodeId, options)
Enable a given tree node, accepts node or nodeId.
```javascript
$('#tree').treeview('enableNode', [ nodeId, { silent: true } ]);
```
Triggers `nodeEnabled` event; pass silent to suppress events.
#### expandAll(options)
Expand all tree nodes. Optionally can be expanded to any given number of levels.
```javascript
$('#tree').treeview('expandAll', { levels: 2, silent: true });
```
Triggers `nodeExpanded` event; pass silent to suppress events.
#### expandNode(node | nodeId, options)
Expand a given tree node, accepts node or nodeId. Optionally can be expanded to any given number of levels.
```javascript
$('#tree').treeview('expandNode', [ nodeId, { levels: 2, silent: true } ]);
```
Triggers `nodeExpanded` event; pass silent to suppress events.
#### getCollapsed()
Returns an array of collapsed nodes e.g. state.expanded = false.
```javascript
$('#tree').treeview('getCollapsed', nodeId);
```
#### getDisabled()
Returns an array of disabled nodes e.g. state.disabled = true.
```javascript
$('#tree').treeview('getDisabled', nodeId);
```
#### getEnabled()
Returns an array of enabled nodes e.g. state.disabled = false.
```javascript
$('#tree').treeview('getEnabled', nodeId);
```
#### getExpanded()
Returns an array of expanded nodes e.g. state.expanded = true.
```javascript
$('#tree').treeview('getExpanded', nodeId);
```
#### getNode(nodeId)
Returns a single node object that matches the given node id.
```javascript
$('#tree').treeview('getNode', nodeId);
```
#### getParent(node | nodeId)
Returns the parent node of a given node, if valid otherwise returns undefined.
```javascript
$('#tree').treeview('getParent', node);
```
#### getSelected()
Returns an array of selected nodes e.g. state.selected = true.
```javascript
$('#tree').treeview('getSelected', nodeId);
```
#### getSiblings(node | nodeId)
Returns an array of sibling nodes for a given node, if valid otherwise returns undefined.
```javascript
$('#tree').treeview('getSiblings', node);
```
#### getUnselected()
Returns an array of unselected nodes e.g. state.selected = false.
```javascript
$('#tree').treeview('getUnselected', nodeId);
```
#### remove()
Removes the tree view component. Removing attached events, internal attached objects, and added HTML elements.
```javascript
$('#tree').treeview('remove');
```
#### revealNode(node | nodeId, options)
Reveals a given tree node, expanding the tree from node to root.
```javascript
$('#tree').treeview('revealNode', [ nodeId, { silent: true } ]);
```
Triggers `nodeExpanded` event; pass silent to suppress events.
#### search(pattern, options)
Searches the tree view for nodes that match a given string, highlighting them in the tree.
Returns an array of matching nodes.
```javascript
$('#tree').treeview('search', [ 'Parent', {
ignoreCase: true, // case insensitive
exactMatch: false, // like or equals
revealResults: true, // reveal matching nodes
}]);
```
Triggers `searchComplete` event
#### selectNode(node | nodeId, options)
Selects a given tree node, accepts node or nodeId.
```javascript
$('#tree').treeview('selectNode', [ nodeId, { silent: true } ]);
```
Triggers `nodeSelected` event; pass silent to suppress events.
#### toggleNodeChecked(node | nodeId, options)
Toggles a nodes checked state; checking if unchecked, unchecking if checked.
```javascript
$('#tree').treeview('toggleNodeChecked', [ nodeId, { silent: true } ]);
```
Triggers either `nodeChecked` or `nodeUnchecked` event; pass silent to suppress events.
#### toggleNodeDisabled(node | nodeId, options)
Toggles a nodes disabled state; disabling if enabled, enabling if disabled.
```javascript
$('#tree').treeview('toggleNodeDisabled', [ nodeId, { silent: true } ]);
```
Triggers either `nodeDisabled` or `nodeEnabled` event; pass silent to suppress events.
#### toggleNodeExpanded(node | nodeId, options)
Toggles a nodes expanded state; collapsing if expanded, expanding if collapsed.
```javascript
$('#tree').treeview('toggleNodeExpanded', [ nodeId, { silent: true } ]);
```
Triggers either `nodeExpanded` or `nodeCollapsed` event; pass silent to suppress events.
#### toggleNodeSelected(node | nodeId, options)
Toggles a node selected state; selecting if unselected, unselecting if selected.
```javascript
$('#tree').treeview('toggleNodeSelected', [ nodeId, { silent: true } ]);
```
Triggers either `nodeSelected` or `nodeUnselected` event; pass silent to suppress events.
#### uncheckAll(options)
Uncheck all tree nodes.
```javascript
$('#tree').treeview('uncheckAll', { silent: true });
```
Triggers `nodeUnchecked` event; pass silent to suppress events.
#### uncheckNode(node | nodeId, options)
Uncheck a given tree node, accepts node or nodeId.
```javascript
$('#tree').treeview('uncheckNode', [ nodeId, { silent: true } ]);
```
Triggers `nodeUnchecked` event; pass silent to suppress events.
#### unselectNode(node | nodeId, options)
Unselects a given tree node, accepts node or nodeId.
```javascript
$('#tree').treeview('unselectNode', [ nodeId, { silent: true } ]);
```
Triggers `nodeUnselected` event; pass silent to suppress events.
## Events
Events are provided so that your application can respond to changes in the treeview's state. For example, if you want to update a display when a node is selected use the `nodeSelected` event.
You can bind to any event defined below by either using an options callback handler, or the standard jQuery .on method.
Example using options callback handler:
```javascript
$('#tree').treeview({
// The naming convention for callback's is to prepend with `on`
// and capitalize the first letter of the event name
// e.g. nodeSelected -> onNodeSelected
onNodeSelected: function(event, data) {
// Your logic goes here
});
```
and using jQuery .on method
```javascript
$('#tree').on('nodeSelected', function(event, data) {
// Your logic goes here
});
```
### List of Events
`nodeChecked (event, node)` - A node is checked.
`nodeCollapsed (event, node)` - A node is collapsed.
`nodeDisabled (event, node)` - A node is disabled.
`nodeEnabled (event, node)` - A node is enabled.
`nodeExpanded (event, node)` - A node is expanded.
`nodeSelected (event, node)` - A node is selected.
`nodeUnchecked (event, node)` - A node is unchecked.
`nodeUnselected (event, node)` - A node is unselected.
`searchComplete (event, results)` - After a search completes
`searchCleared (event, results)` - After search results are cleared
## Copyright and Licensing
Copyright 2013 Jonathan Miles
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at <http://www.apache.org/licenses/LICENSE-2.0>
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.