GithubHelp home page GithubHelp logo

patternfly / patternfly-bootstrap-treeview Goto Github PK

View Code? Open in Web Editor NEW

This project forked from jonmiles/bootstrap-treeview

200.0 24.0 106.0 1.17 MB

Tree View for Twitter Bootstrap -

Home Page: http://jonmiles.github.io/bootstrap-treeview

License: Apache License 2.0

JavaScript 74.37% HTML 22.30% CSS 3.34%

patternfly-bootstrap-treeview's Introduction

Bootstrap Tree View


Bower version npm version Build Status

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.

Bootstrap Tree View Default

Dependencies

Where provided these are the actual versions patternfly-bootstrap-treeview has been tested against.

Getting Started

Install

You can install using bower (recommended):

$ bower install patternfly-bootstrap-treeview

or using npm:

$ npm install patternfly-bootstrap-treeview

or download manually.

Usage

Add the following resources for the patternfly-bootstrap-treeview to function correctly.

<!-- 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.

<div id="tree"></div>

Basic usage may look something like this.

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

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.

{
  text: "Node 1"
}

If you want to do more, here's the full node specification

{
  text: "Node 1",
  icon: "glyphicon glyphicon-stop",
  image: "something.png",
  selectedIcon: "glyphicon glyphicon-stop",
  color: "#000000",
  backColor: "#FFFFFF",
  iconColor: "#FFFFFF",
  iconBackground: "#000000",
  selectable: true,
  checkable: true,
  state: {
    checked: true,
    disabled: true,
    expanded: true,
    selected: true
  },
  tags: [
    'available',
    {text:'not available', class:'disabled'}
  ],
  dataAttr: {
    target: '#tree'
  }
  id: 'something',
  class: 'special extraordinary',
  hideCheckbox: true,
  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.

tooltip

String Option

The tooltip value displayed for a given tree node on mouse hover.

icon

String Optional

The icon displayed on a given node, typically to the left of the text.

image

String Optional

The image displayed on a given node, overrides the icon.

For simplicity we directly leverage Bootstraps Glyphicons support 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.

iconColor

String Optional

The color used on a given node's icon.

iconBackground

String Optional

The color used under a given node's background icon.

lazyLoad

Boolean Default: false

Adds an expand icon to the node even if it has no children, it calls the lazyLoad() function (described below) upon the first expand.

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.

checkable

Boolean Default: true

Whether or not a node is checkable in the tree, used in conjunction with showCheckbox.

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

A tag can be an object with properties 'text' for tag value and 'class' for class names(s) of this tag

tagsClass

Strings Optional

String, class names(s). Default: "badge"

Sets the class of node tags

dataAttr

Array of Objects Optional

List of per-node HTML data- attributes to append.

class

String Optional

List of custom CSS classes to append, separated by space.

id

String Optional

Custom HTML id attribute.

hideCheckbox

Boolean Default: false

Used to hide the checkbox of the given node when showCheckbox is set to true.

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.

// Example: initializing the treeview
// expanded to 5 levels
// with a background color of green
$('#tree').treeview({
  data: data,
  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 either data or dataUrl.

This is the core data to be displayed by the tree view. If data is provided, dataUrl will be ignored.

dataUrl

jQuery Ajax settings object, as documented here.

Accepts a set of key/value pairs that configure an Ajax request. All settings are optional, any provided will be merge with the following default configuration.

{
  method: 'GET',
  dataType: 'json',
  cache: false
}

JSON is the only format accepted.

backColor

String, any legal color value. 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. Default: inherits from Bootstrap.css.

Sets the border color for the component; set showBorder to false if you don't want a visible border.

changedNodeColor

String, any legal color value. Default: blue

Sets the text color for a node with a changed checkbox.

checkboxFirst

Boolean. Default: false

Swaps the node icon with the checkbox, used in conjunction with showCheckbox.

checkedIcon

String, class names(s). Default: "glyphicon glyphicon-check" as defined by Bootstrap 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

Sets the icon to be used on a collapsible tree node.

color

String, any legal color value. 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

Sets the icon to be used on a tree node with no child nodes.

expandIcon

String, class name(s). Default: "glyphicon glyphicon-plus" as defined by Bootstrap Glyphicons

Sets the icon to be used on an expandable tree node.

loadingIcon

String, class name(s). Default: "glyphicon glyphicon-hourglass" as defined by Bootstrap Glyphicons

Sets the icon to be used on an a lazyLoad node before its content gets loaded.

hierarchicalCheck

Boolean. Default: false

Whether or not to enable hierarchical checking/unchecking of checkboxes.

propagateCheckEvent

Boolean. Default: false

Whether or not to propagate nodeChecked and nodeUnchecked events to the parent/child nodes, used in conjunction with hierarchicalCheck.

highlightChanges

Boolean. Default: false Highlights the nodes with changed checkbox state, used in conjunction with showCheckbox.

highlightSearchResults

Boolean. Default: true

Whether or not to highlight search results.

highlightSelected

Boolean. Default: true

Whether or not to highlight the selected node.

lazyLoad

Function. Default: undefined

This function is called when a lazyly-loadable node is being expanded for the first time. The node is available as the first argument, while the second argument is a function responsible for passing the loaded data to the renderer. The data needs to be in the same JSON format as specified above.

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

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. Default: '#F5F5F5'.

Sets the default background color activated when the users cursor hovers over a node.

partiallyCheckedIcon

String, class names(s). Default: "glyphicon glyphicon-expand" as defined by Bootstrap Glyphicons

Sets the icon to be as a partially checked checkbox, used in conjunction with showCheckbox and hierarchicalCheck.

preventUnselect

Boolean. Default: false

Whether or not a node can be unselected without another node first being selected.

allowReselect

Boolean. Default: false

Whether or not a node can be reselected when its already selected, used in conjunction with preventUnselect.

selectedIcon

String, class name(s). Default: "glyphicon glyphicon-stop" as defined by Bootstrap 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. Default: undefined, inherits.

Sets the background color of the selected node.

searchResultColor

String, any legal color value. Default: '#D9534F'.

Sets the foreground color of the selected node.

selectedBackColor

String, any legal color value. Default: '#428bca'.

Sets the background color of the selected node.

selectedColor

String, any legal color value. 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.

showImage

Boolean. Default: false

Whether or not to display a nodes image instead of the 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.

tagsClass

String, class names(s). Default: "badge"

Sets the class of tags

uncheckedIcon

String, class names(s). Default: "glyphicon glyphicon-unchecked" as defined by Bootstrap Glyphicons

Sets the icon to be as an unchecked checkbox, used in conjunction with showCheckbox.

wrapNodeText

Boolean. Default: false

Whether or not to surround the text of the node with a <span class='text'> tag.

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.

$('#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.

// 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.

If you intend to make multiple API calls, store a reference to the treeview instance.

var tree = $('#tree').treeview(true);
tree.method1(args);
tree.method2(args);

List of Methods

The following is a list of all available methods.

All methods that all declare argument nodes will accept either a single node, or an Array of nodes.

addNode(nodes, parentNode, index, options)

Add nodes to the tree.

$('#tree').treeview('addNode', [ nodes, parentNode, index, { silent: true } ]);

If parentNode evaluates to false, node will be added to root

If index evaluates to false, node will be appended to the nodes

Triggers nodeRendered event; pass silent to suppress events.

addNodeAfter(nodes, node, options)

Add nodes to the tree after given node.

$('#tree').treeview('addNodeAfter', [ nodes, node, { silent: true } ]);

If node evaluates to false, node will be prepended to the tree's root

Triggers nodeRendered event; pass silent to suppress events.

addNodeBefore(nodes, node, options)

Add nodes to the tree before given node.

$('#tree').treeview('addNodeAfter', [ nodes, node, { silent: true } ]);

If node evaluates to false, node will be appended to the tree's root

Triggers nodeRendered event; pass silent to suppress events.

checkAll(options)

Checks all tree nodes

$('#tree').treeview('checkAll', { silent: true });

Triggers nodeChecked event; pass silent to suppress events.

checkNode(nodes, options)

Checks given tree nodes.

$('#tree').treeview('checkNode', [ nodes, { 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.

$('#tree').treeview('clearSearch');

Triggers searchCleared event

collapseAll(options)

Collapse all tree nodes, collapsing the entire tree.

$('#tree').treeview('collapseAll', { silent: true });

Triggers nodeCollapsed event; pass silent to suppress events.

collapseNode(nodes, 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 }.

$('#tree').treeview('collapseNode', [ nodes, { silent: true, ignoreChildren: false } ]);

Triggers nodeCollapsed event; pass silent to suppress events.

disableAll(options)

Disable all tree nodes

$('#tree').treeview('disableAll', { silent: true, keepState: true });

Triggers nodeDisabled event; pass silent to suppress events and keepState to keep the expanded/checked/selected state.

disableNode(nodes, options)

Disable given tree nodes.

$('#tree').treeview('disableNode', [ nodes, { silent: true, keepState: true } ]);

Triggers nodeDisabled event; pass silent to suppress events and keepState to keep the expanded/checked/selected state.

enableAll(options)

Enable all tree nodes

$('#tree').treeview('enableAll', { silent: true });

Triggers nodeEnabled event; pass silent to suppress events.

enableNode(nodes, options)

Enable given tree nodes.

$('#tree').treeview('enableNode', [ nodes, { 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.

$('#tree').treeview('expandAll', { levels: 2, silent: true });

Triggers nodeExpanded event; pass silent to suppress events.

expandNode(nodes, options)

Expand given tree nodes. Optionally can be expanded to any given number of levels.

$('#tree').treeview('expandNode', [ nodes, { levels: 2, silent: true } ]);

Triggers nodeExpanded event; pass silent to suppress events.

findNodes(pattern, field)

Returns an array of matching node objects.

$('#tree').treeview('findNodes', ['Parent', 'text']);

Use regular expressions for pattern matching NOT string equals, if you need to match an exact string use start and end string anchors e.g. ^pattern$.

getChecked()

Returns an array of checked nodes e.g. state.checked = true.

$('#tree').treeview('getChecked');

getCollapsed()

Returns an array of collapsed nodes e.g. state.expanded = false.

$('#tree').treeview('getCollapsed');

getDisabled()

Returns an array of disabled nodes e.g. state.disabled = true.

$('#tree').treeview('getDisabled');

getEnabled()

Returns an array of enabled nodes e.g. state.disabled = false.

$('#tree').treeview('getEnabled');

getExpanded()

Returns an array of expanded nodes e.g. state.expanded = true.

$('#tree').treeview('getExpanded');

getNodes()

Returns an array of all initialized nodes.

$('#tree').treeview('getNodes', nodes);

getParents(nodes)

Returns parent nodes for given nodes, if valid otherwise returns undefined.

$('#tree').treeview('getParent', nodes);

getSelected()

Returns an array of selected nodes e.g. state.selected = true.

$('#tree').treeview('getSelected');

getSiblings(nodes)

Returns an array of sibling nodes for given nodes, if valid otherwise returns undefined.

$('#tree').treeview('getSiblings', nodes);

getUnchecked()

Returns an array of unchecked nodes e.g. state.checked = false.

$('#tree').treeview('getUnchecked');

getUnselected()

Returns an array of unselected nodes e.g. state.selected = false.

$('#tree').treeview('getUnselected');

remove()

Removes the tree view component. Removing attached events, internal attached objects, and added HTML elements.

$('#tree').treeview('remove');

removeNode()

Removes given nodes from the tree.

$('#tree').treeview('removeNode', [ nodes, { silent: true } ]);

revealNode(nodes, options)

Reveals given tree nodes, expanding the tree from node to root.

$('#tree').treeview('revealNode', [ nodes, { 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.

$('#tree').treeview('search', [ 'Parent', {
  ignoreCase: true,     // case insensitive
  exactMatch: false,    // like or equals
  revealResults: true,  // reveal matching nodes
}]);

Triggers searchComplete event

selectNode(nodes, options)

Selects given tree nodes.

$('#tree').treeview('selectNode', [ nodes, { silent: true } ]);

Triggers nodeSelected event; pass silent to suppress events.

toggleNodeChecked(nodes, options)

Toggles a node's checked state; checking if unchecked, unchecking if checked.

$('#tree').treeview('toggleNodeChecked', [ nodes, { silent: true } ]);

Triggers either nodeChecked or nodeUnchecked event; pass silent to suppress events.

toggleNodeDisabled(nodes, options)

Toggles a node's disabled state; disabling if enabled, enabling if disabled.

$('#tree').treeview('toggleNodeDisabled', [ nodes, { silent: true } ]);

Triggers either nodeDisabled or nodeEnabled event; pass silent to suppress events.

toggleNodeExpanded(nodes, options)

Toggles a node's expanded state; collapsing if expanded, expanding if collapsed.

$('#tree').treeview('toggleNodeExpanded', [ nodes, { silent: true } ]);

Triggers either nodeExpanded or nodeCollapsed event; pass silent to suppress events.

toggleNodeSelected(nodes, options)

Toggles a node selected state; selecting if unselected, unselecting if selected.

$('#tree').treeview('toggleNodeSelected', [ nodes, { silent: true } ]);

Triggers either nodeSelected or nodeUnselected event; pass silent to suppress events.

uncheckAll(options)

Uncheck all tree nodes.

$('#tree').treeview('uncheckAll', { silent: true });

Triggers nodeUnchecked event; pass silent to suppress events.

uncheckNode(nodes, options)

Uncheck given tree nodes.

$('#tree').treeview('uncheckNode', [ nodes, { silent: true } ]);

Triggers nodeUnchecked event; pass silent to suppress events.

updateNode(node, newNode, option)

Updates / replaces a given tree node.

$('#tree').treeview('updateNode', [ node, newNode, { silent: true } ]);

Triggers nodeRendered event; pass silent to suppress events.

unmarkCheckboxChanges()

Marks all checkboxes as unchanged, removing the highlighted class from each of them.

unselectNode(nodes, options)

Unselects given tree nodes.

$('#tree').treeview('unselectNode', [ nodes, { 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:

$('#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

$('#tree').on('nodeSelected', function(event, data) {
  // Your logic goes here
});

List of Events

Lifecycle Events

Use callback handlers for lifecycle events otherwise you'll miss the events fired during creation.

loading (event) - The tree has initiated data loading.

loadingFailed (event, error) - The tree failed to load data (ajax error)

initialized (event, nodes) - The tree has initialized itself and data ready for rendering.

nodeRendered (event, node) - A new node is rendered;

rendered (event, nodes) - The tree is rendered;

destroyed (event) The tree is being destroyed;

State 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.

Other Events

searchComplete (event, results) - After a search completes

searchCleared (event, results) - After search results are cleared

All events that emit multiple nodes, do so as an object collection not an array. This is due to limitations of jQuery in cloning plain JavaScript objects. If you need to an Array of nodes you'll need to reduce the object back into an array.

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.

patternfly-bootstrap-treeview's People

Contributors

atodorov avatar bleathem avatar dgutride avatar dlabrecq avatar dtaylor113 avatar jeff-phillips-18 avatar jonmiles avatar jperkelens avatar maldoinc avatar nerburish avatar priley86 avatar redallen avatar santimauro avatar skateman avatar tbaron avatar zehir avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

patternfly-bootstrap-treeview's Issues

I have a "updateNode" bug

Hi, when I use this method:$('#tree').treeview('updateNode', [ node, newNode, { silent: true } ]);
after update,the node‘s sons disappeared。Have you met before?

Is README.md file correct?

Hi,
I see in the README:

Getting Started

Install

You can install using bower (recommended):

$ bower install bootstrap-treeview
or using npm:

$ npm install bootstrap-treeview
or download manually.

Shouldn't this be:

$ npm install patternfly- bootstrap-treeview
$ bower install patternfly- bootstrap-treeview

...and the 'download' link be updated to point to 'patternfly-bootstrap-treeview'.

Thanks,

  • Dave

Having different colors (back & fore) for levels ?

Hello,
Could be really cool to be able to specify backColor (all colors related) as an array ['#fff', '#0f0'].
The first one for the first level, the second for the second and so on. And in the case you have only defined 3 colors all level upper 3 use the third color.

Regards
Philippe

loadingIcon doesn't appear while lazyLoad

I am trying to use the lazyLoad method to load sub items of a directory. The issue is, while loading I don't see the loading icon in place of expandIcon.

Here are a few snapshots of the tree-view and the corresponding html

Before Load:

screen shot 2018-08-21 at 5 52 41 pm

screen shot 2018-08-21 at 5 52 48 pm

During Load (Expand Icon Clicked):

screen shot 2018-08-21 at 5 55 16 pm screen shot 2018-08-21 at 5 52 56 pm

After Load:

screen shot 2018-08-21 at 5 55 28 pm

screen shot 2018-08-21 at 5 55 24 pm

The code I an using for tree-view:

        this.$('#tree').treeview({
            showBorder: false,
            levels: 1,
            data: data,
            lazyLoad: function (node, dataHandler) {
                var result = "";
                $.ajax({
                    url: self.getUrl(),
                    type: 'GET',
                    async: false,
                    data: self.getData(node.text),
                    success: function (data) {
                        result = data;
                    }
                });
                dataHandler(result);
            }
        });

Can someone take a look and let me know if I am doing something wrong?

Can it support context menu?

I have used bootstrap treeview for quite a while, it was pretty good until recent. We have a requirement that needs a pop up menu when right clicking the node. Is it possible to support that? Thanks.

Can´t collapse

Hi, my name is Abel , I have implemented this library in my app but the plus and minus icons not appear, so is impossible to collapse the nodes.
Thanks in advance.

image

Reload the tree without affecting open/closed nodes

Hello. I wonder if there is a way of reloading a tree (currently I call $(..).treeview(..) again) without closing/opening already open/close nodes, thus making the least amount of modifications to the user's current view.

I can imagine writing logic that checks the status of all the nodes and then sets that status again every time rendering is finished, but having a convenient refresh method would be ideal.

Avoid onNodeSelected event if button or link is added to LI

Hello,

It would be nice to prevent event propagation to onNodeSelectedEvent when a html content is add to node with onNodeRendered event.

Here is an example:

onNodeRendered: function (event, node) {
	node.$el.append($('<a href="' + node.url + '" class="btn btn-warning btn-xs pull-right prevent-click" target="_blank"><i class="fa fa-rss prevent-click"></i></a>'));
}

When I click on the link, to "click" event is also propagated to li node element.
I haven't found an option or parameter to avoid this.

So, I have had an idea. I have added a custom class named "prevent-click" and modify the source code in Tree.prototype._clickHandler function (see below).

Is it the good way to do this and if yes, can you add it for the newt release?

Thanks in advance and have a nice day.

Tree.prototype._clickHandler = function (event) {

	var target = $(event.target);
	var node = this.targetNode(target);
	if (!node || node.state.disabled) return;

	var classList = target.attr('class') ? target.attr('class').split(' ') : [];

	// BEGIN: The new code
	if(classList.indexOf("prevent-click")!==-1){
		return;
	}
	// END: The new code

	if ((classList.indexOf('expand-icon') !== -1) || (classList.indexOf('prevent-click') !== -1)) {
		this._toggleExpanded(node, $.extend({}, _default.options));
	}
	else if ((classList.indexOf('check-icon') !== -1)) {
		if (node.checkable) {
			this._toggleChecked(node, $.extend({}, _default.options));
		}
	}
	else {
		if (node.selectable) {
			this._toggleSelected(node, $.extend({}, _default.options));
		} else {
			this._toggleExpanded(node, $.extend({}, _default.options));
		}
	}
};

Double "icon" in leaf nodes with fonticons

Cc @skateman

Non-leaf nodes with fonticons look like:

<li class="list-group-item node-vms_filter_treebox no-cursor" data-nodeid="0.0.0" title="Global Shared Filters">
  <span class="indent"></span>
  <span class="icon expand-icon fa fa-fw fa-angle-down"></span>
  <span class="icon node-icon pficon pficon-folder-close"></span>
  Global Filters
</li>

but for leaf nodes, there's an extra span with icon glyphicon which .. doesn't seem to make sense:

<li class="list-group-item node-vandt_treebox node-selected" data-nodeid="0.0.4.0.1" title="Folder: Demo">
  <span class="indent"></span>
  <span class="indent"></span>
  <span class="indent"></span>
  <span class="icon glyphicon"></span>
  <span class="icon node-icon pficon pficon-folder-close-blue"></span>
  Demo
</li>

version number

from version 2.1.0,the version number not change in css file and js file

Autocomplete Search

Has anyone successfully implemented an autocomplete search?

Apologies if this isn't the place to post questions.

exception during lazyLoad

hi,

I would like to load child nodes of a node dynamically using lazyLoad. I am using this function to initialise a tree:

$('#tree').treeview({ data:getTree(), highlightSelected: true, levels: 1, lazyLoad: function(node, display) { let getChildrenUrl = '/hierarchy/children?iri=' + encodeURIComponent(node.iri) data = httpGet(getChildrenUrl) display(data); }});

data returned to the function is as follows:

[ { "text": "Child 1", "iri": "http://bbl.health/domUD1UN1h", "lazyLoad": true, "parents": [] }, { "text": "Child 2", "iri": "http://bbl.health/domUD1UN1h", "lazyLoad": true, "parents": [] } ]

I am getting the following exception: bootstrap-treeview.js:386 Uncaught TypeError: Cannot create property 'level' on string '[{"text":"Child 1","iri":"http://bbl.health/domUD1UN1h","lazyLoad":true,"parents":[]},{"text":"Child 2","iri":"http://bbl.health/domUD1UN1h","lazyLoad":true,"parents":[]}]'

the line in bootstrap-treeview.js is this one:

`Tree.prototype._setInitialState = function (node, level, done) {
	if (!node.nodes) return;
	level += 1;
	done = done || [];

	var parent = node;
	$.each(node.nodes, $.proxy(function (index, node) {
		var deferred = new $.Deferred();
		done.push(deferred.promise());

		// level : hierarchical tree level, starts at 1
		node.level = level;` .  <------- EXCEPTION

could you please advise how to solve this problem?

method addNode

Hi,

How I can use addNode method in treeview. any help will be highly appreciated.

Regards,

Aamir

image

Adding child node to the node returned from `onNodeSelected` fails

I was trying to use the node returned from event hooks (e.g. onNodeSelected(event, node)) as parent and to add a child to that parent without success. Here is an emulating code of what i was doing.

$("#tree").treeview({
  // ...
   onNodeSelected: function (event, node) {
      var folder = {
        name: "child",
        // ...
      };
      $("#tree").treeview(true).addNode(folder, node);
  },
// ...
}

The cause of that is the node returned from the hook is a deep copy. See below code

        // ...
        this._triggerEvent('nodeSelected', node, options);
        // ...
       Tree.prototype._triggerEvent = function (event, data, options) {
		if (options && !options.silent) {
                        // $.extend(true, {}, data) is a deep copy of the original node.
			this.$element.trigger(event, $.extend(true, {}, data));
		}
	}   

So, adding child is to add child to the copy which has no effect to the tree.

The issue can be worked around by getting the original node (see below). Wound it be better to return the original copy? Is it intentional to return a replicate over original to avoid internal data structure being messed up? Thanks.

$("#tree").treeview({
  // ...
   onNodeSelected: function (event, node) {
      var folder = {
        name: "child",
        // ...
      };
      var parent = $("#tree").treeview(true).findNodes(node.id, "id");
      $("#tree").treeview(true).addNode(folder, parent);
  },
  // ...
}

Object state gets out of sync

*** CAN BE CLOSED *** => See comment below
Hi,

I have a tree that starts from many roots. When expanded to the leafs, each intermediate node has only one child. So when a root node is expanded, I wish to expand the entire path to the leaf.

Currently I achieve this by using the nodeExpanded event. Once the event arises, I expand the expanded node its children. See the code snippet and working example on plnkr below.

$('#treeview1').on('nodeExpanded ', function(event, node) {
        if (node.nodes && node.nodes.length > 0) {
            $(this).treeview(true).expandNode(node.nodes, {
                levels: 10,
                silent: true
            });
        }
});

plnkr example

Using the above technique works fine in the jonmiles version, so my guess is that this is the correct way of doing it. The pf version seems to have some state issue. It can be reproduced by doing the following actions in the provided plnkr example:

  • Expand "Parent 1" => Will expand the entire tree
  • Collapse "Child1" => Two clicks are needed, since somehow the state says collapsed. (The same applies for the intermediate levels, which causes some strange effects).

So am I using the wrong technique or is there a bug in the lib?
Thanks in advance!

*** EDIT ***
I added expand & collapse all behavior. These buttons work fine during first load but the following scenario also shows issue related to the expanding behavior (and the corresponding state management):

  • Make sure the plnkr preview window is clean (refresh)
  • Push "Expand all"-button
  • Collapse "Child 1"
  • Push "Expand all"-button

*** EDIT2 ***
I adapted the URL to the one in the develop branch to see if it was fixed there and the behavior is better. But the following reproduction still doesn't work as expected:

  • Make sure the plnkr preview window is clean (refresh)
  • Push "Expand all"-button
  • Collapse "Child 1"
  • Expand "Child 1"
  • Collapse "GrandChild 1" => Will require two click

use of Fontawesome not possible

if you have fontawesome included in your page and create nodes with fontawesome classes instead of glyphicons (removed in later Bootstrap versions) it either displays nothing, squares or ignores the classes
entirely and creates the nodes with standard glyphicon classes instead.

TypeError: node.state is undefined

Hi,

i'm trying to move from jonmiles/bootstrap-treeview to your fork but when i try to select node (by clicking it) i get error:

TypeError: node.state is undefined

Line 1539

// Do not re-expand already expanded nodes
if (node.state.expanded) return;

I even tried initializing with data from docs and it's the same.

When i use jonmiles/bootstrap-treeview, it works fine. No error.

addNode error

addNode returns
TypeError: Cannot read property 'visible' of undefined bootstrap-treeview.js:606 at Tree._setVisible (/Volumes/ssd/git/a2ds/server/office/public/libs/treeview/dist/bootstrap-treeview.js:606:40) at Tree.<anonymous> (/Volumes/ssd/git/a2ds/server/office/public/libs/treeview/dist/bootstrap-treeview.js:572:12) at Object.e (/Volumes/ssd/git/a2ds/server/office/public/assets/lib/jquery/jquery.min.js:2:3556) at Function.each (/Volumes/ssd/git/a2ds/server/office/public/assets/lib/jquery/jquery.min.js:2:2716) at Tree._setExpanded (/Volumes/ssd/git/a2ds/server/office/public/libs/treeview/dist/bootstrap-treeview.js:571:8) at Tree.<anonymous> (/Volumes/ssd/git/a2ds/server/office/public/libs/treeview/dist/bootstrap-treeview.js:1343:12) at Array.e (/Volumes/ssd/git/a2ds/server/office/public/assets/lib/jquery/jquery.min.js:2:3556) at i (/Volumes/ssd/git/a2ds/server/office/public/assets/lib/jquery/jquery.min.js:2:28018)

tree don't collapse

Hie,

I try using your bundle but I can't collapse the tree, even if I put levels:1 in the tree definition. No error fired. The tree is shown but all expanded.
The same configuration works fine with jonmiles/bootstrap-treeview.

If I put some logic like nodeSlected it works.

I have jquery 2.2.4 from cdnjs and bootstrap from 3.3.6 from maxcdn.

Here is my tree definition :
$('#tree').treeview({ data: {{ tree|raw }}, showTags: true, // color: "#428bca", expandIcon: 'glyphicon glyphicon-chevron-right', collapseIcon: 'glyphicon glyphicon-chevron-down', levels: 1, });

Can you help me ?

Determine nodeUnselected originator/sender

nodeUnselected is called when a node is unselected, but is also called when a node is unselected because another node was selected.

I'm using the tree in a sort of master-detail setup, where selecting a tree node loads some detail data using ajax.

So when a node is selected, I want to load data. But when a node is unselected I want to remove previously loaded data - but only if a node was unselected by the user. The problem is that I can't find any way to differentiate between a node 'really' being unselected, and a a node being unselected 'automatically' because another has been selected.

Is there any way to determine the originator/sender of the nodeUnselected event?

Can't remove node

Hello,

If I try to remove a node with this $('#tree').treeview('removeNode', [ '0.0.3.3' ]); it fire this error :
bootstrap-treeview.min.js:1 Uncaught TypeError: Cannot read property 'remove' of undefined at g._removeNodeEl (http://localhost/cours2/web/assets/vendor/patternfly-bootstrap-treeview/dist/bootstrap-treeview.min.js:1:16323) at g.<anonymous> (http://localhost/cours2/web/assets/vendor/patternfly-bootstrap-treeview/dist/bootstrap-treeview.min.js:1:21255) at String.f (https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js:2:3698) at Function.each (https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js:2:2861) at g.removeNode (http://localhost/cours2/web/assets/vendor/patternfly-bootstrap-treeview/dist/bootstrap-treeview.min.js:1:21152) at Object.f [as removeNode] (https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js:2:3698) at HTMLDivElement.<anonymous> (http://localhost/cours2/web/assets/vendor/patternfly-bootstrap-treeview/dist/bootstrap-treeview.min.js:1:26758) at Function.each (https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js:2:2861) at n.fn.init.each (https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js:2:845) at n.fn.init.a.fn.(anonymous function) [as treeview] (http://localhost/cours2/web/assets/vendor/patternfly-bootstrap-treeview/dist/bootstrap-treeview.min.js:1:26626)

lazyloaded node expand question

i build a treeview and have set nodes to load by lazyload function.
when i expand the first node,its childnodes are loaded and displayed.
then i collapse the first node and expand the second node. when the second node is expanded,the first node is expanded automaticly at the same time.
this situation lasts till all nodes of the tree have been expanded atleast once.
is it a bug or just my coding error?thanks for telling.

Find node by ID

Hello,

how can i find a node by id? Is this possible?

Reiner

findNode based on id?

Is there a way to find a node based upon an arbitrary attribute value set in the node like, for instance, id? I can't seem to do it. I'd like to programmatically select a node based on id.

I'm trying to use it to track a hierarchy of locations, like "Room A->Gray Cabinet->Shelf 2" etc., but many of them will have similar names, which the search method uses, with different ids.

Cannot addNode when inside events (due to deep copy)

This example does not work, because node being passed in event is deep copy (and is no longer a part of a tree).

tree.on('nodeSelected', function(event, node, options) {
	tree.addNode([{text: "New"}], tree.getNode(node.nodeId));
});

The node that you get inside the event, cannot be used in addNode operation since the result of which fails to render or make actual changes on the tree.

Locally I have made a work around, that allows you to get the real node using nodeId that you can retrieve from the event.

tree.on('nodeSelected', function(event, node, options) {
	tree.addNode([{text: "New"}], tree.getNode(node.nodeId));
});

Changes in the treeview.js

// Tree manipulation methods
getNode: $.proxy(this.getNode, this),
addNode: $.proxy(this.addNode, this),

...

Tree.prototype.getNode = function (nodeId) {
	return this._nodes[nodeId];
}

updateNode hides node from view

I'm writing code to make the "tag" reflect the number of children that have been "checked". The last method call of my function is to update the node of the treeView to get the tag to update, but after that call, the node (and its parent) disappears. Here is my code:

        onNodeChecked: function (event, node) {
            console.log("node checked " + node.text);

            var p = tab2data.treeView.getParents(node)[0];
            if (!p.dataAttr) {
                p.dataAttr = {};
                p.dataAttr.selected = 0;
            }

            if (!p.tags) {
                p.tags = [];
            }
            p.tags[0] = p.dataAttr.selected++ + " checked";

            tab2data.treeView.updateNode(p, p);
}

Method checkNode doesn't restore partially-checked parents.

Hi,

I just found an issue when trying to programmatically check nodes via the checkNode method.
Apparently the method passes the checked status onto the node's children however it doesn't set the partially-checked status on its parents when not all the siblings are checked.
Take a look at the screenshot below. This is the result I'm getting with:

jQuery("#outfitsProductsTree").treeview('checkNode', [nodes2Check, { silent: false } ]);

(hierarchicalCheck: true)
usingchecknode
as you can see the parent(s) of the 3 nodes I checked should have the partially-checked status yet they don't.
I digged a bit into the code and I found a workaround by using the toggleNodeChecked method instead. For some reason this method correctly sets the partially-checked status on the parents. So if I invoke:

jQuery("#outfitsProductsTree").treeview('toggleNodeChecked', [nodes2Check, { silent: false } ]);

with the very same nodes (nodes2Check) (and obviously hierarchicalCheck: true) I get the correct result:
usingtogglenodechecked
Sorry I'm not sure how to fix it properly otherwise I'd have forked straight away.
Furthermore I'm still "forced" to use an old version due to Issue no.41

I hope the workaround helps for the time being

Select node by it id

How can I select node by its id without searching by node name? Also I want to autoexplode all parent nodes

CollapseAll and ExpandNode doesn't seem to work

Hi,
I created the plnkr below which uses the straight 'jonmiles/bootstrap-treeview':
https://plnkr.co/edit/6llHzoQhUxQ5AnzEZxVP?p=preview
The following code works fine without exception (see script.js file):

$('#treeview1').treeview('collapseAll', { silent: true });
$('#treeview1').treeview('expandNode', [ 0 ]);

However, when I run the same code using patternfly-bootstrap-treeview. collapseAll doesn't seem to do anything, and expandNode returns:
Uncaught TypeError: Cannot read property 'expanded' of undefined
https://plnkr.co/edit/e8pJdZRw3jQzlbR9ximt?p=preview

Note: 'disableAll' works fine. Just having trouble with collapseAll and expandNode.

Just wondering if I'm setting up/using patternfly-bootstrap-treeview correctly.
Thanks,

  • Dave

@bleathem , @skateman

Note: This functionality is needed for MiQ/SUI. -thanks!
@serenamarie125

Vers. 2.1.2 completely breaks my tree, vers. 2.1.1 is ok

Hello,

I had to debug the 'checkNode' method and since I was running vers. 2.1.1 I thoguht it might have been a good idea to update this library to the latest version. However as soon as I reloaded the page the tree was totally broken, only the first noce is coming up with a weird border and no children when trying to expand...same happens with vers. 2.1.2.
I looked at the dates and as soon as I tried vers. 2.1.0 my tree works again perfectly. I can debug that version however I still cannot update to the latest!
Is there any major breaking change from 2.1.1 to 2.1.2 ??
Take a look at what happens with the very same code:

with_vers 2 1 1

with_vers 2 1 2

The code to get that tree hasn't changed, it's the same for both and yet it produces a highly different result:

jQuery("#outfitsProductsTree", documentContext).treeview({
      data: treeviewData,
      hierarchicalCheck: true,
      expandIcon:"fa fa-chevron-right",
      collapseIcon:"fa fa-chevron-down",
      loadingIcon:"fa fa-clock-o",
      emptyIcon:"fa",
      checkedIcon: 'fa fa-check-square-o',
      uncheckedIcon: 'fa fa-square-o',
      showCheckbox: true,
      showTags: true,
      partiallyCheckedIcon: 'fa fa-minus-square-o'        
});

and obviously treeviewData is always the same structure for both

Many thanks

更新BUG

更新节点的时候,子节点就消失了

hideCheckbox not working

Hi all,

i using the treeview with checkboxes but wan't to hide the checkbox for the parent and firs chil node. I added hideCheckbox = true but there isn't any effect.

Please find a snipped below.

`<script type="text/javascript">
$(function() {

    var defaultData = [
      {
    hideCheckbox: true,
        text: 'Main Categorie',
        nodes: [
          {
	hideCheckbox: true,  
	text: 'Sub Categorie',
            nodes: [
              {
                text: 'Option 1',
              },
              {
                text: 'Option 2',
              },
	  {
            text: 'Option 3',
	   },
	  {
	    text: 'Option 4',
	   }
            ]
          },
            ]
          }
        ]
      },

	var $checkableTree = $('#treeview-checkable').treeview({
      levels: 1,
	  data: defaultData,
      showIcon: false,
      showCheckbox: true,
      onNodeChecked: function(event, node) {
        $('#selected-option').prepend('<p>' + node.text + ' was checked</p>');
      },
      onNodeUnchecked: function (event, node) {
        $('#selected-option').prepend('<p>' + node.text + ' was unchecked</p>');
      }
    });
});`

Unable to redraw the tree view

Hi,

I am using this treeview and I want to redraw treeview when node is selected and want to display the child nodes of the selected node. In a nutshell I want to stay on level-1 hierarchy.

Need help?

Programmatically expanding a node from onNodeSelected event isn't working

Not sure what I'm doing wrong. I'm trying to programmatically expand a node when the node is clicked (selected). The tree visually expands, but when I get a list of all the expanded nodes, the list is empty.

Please see the jsfiddle https://jsfiddle.net/acapkxhn/3/ Steps:

  • open a javascript console to see the log messages
  • click on the Parent 1 node
    The tree expands, but the list returned from tree.getExpanded() is empty.

I'm using

  • jquery 3.2.1
  • bootstrap 3.3.7
  • patternfly-bootstrap-treeview 2.1.5

Any idea what I'm doing wrong or not doing?

don't check parent if all sons are checked

How can I prevent the father from being checked when all the children are checked? i have this scenario:

Europe
------->France
------->Belgium
------->Italia
If i check France,Belgium,Italia--> Europe will be checked and i'm not interested.

Thanks!

Dynamically add new node after lazyLoad has been triggered

Hi.

I have a function that allows for uploading in the tree, meaning that I need to add a new node when the file has been uploaded. I expected "addNode" to do this but after receiving the error "Uncaught TypeError: Cannot read property 'visible' of undefined", I get the feeling that the addNode functionality must take a node that has been passed through the renderer, i.e. an actual node and not just a plain node object passed in at initialisation of the tree.

So is there a way that I can add a node, as in a plain node object, or is there a way I can call the renderer that is passed through in the lazyLoad function?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.