jquery.fancytree

WebJar for jquery.fancytree

License

License

MIT
Categories

Categories

Github Development Tools Version Controls
GroupId

GroupId

org.webjars.bower
ArtifactId

ArtifactId

github-com-mar10-fancytree
Last Version

Last Version

2.27.0
Release Date

Release Date

Type

Type

jar
Description

Description

jquery.fancytree
WebJar for jquery.fancytree
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/mar10/fancytree

Download github-com-mar10-fancytree

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.bower/github-com-mar10-fancytree/ -->
<dependency>
    <groupId>org.webjars.bower</groupId>
    <artifactId>github-com-mar10-fancytree</artifactId>
    <version>2.27.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.bower/github-com-mar10-fancytree/
implementation 'org.webjars.bower:github-com-mar10-fancytree:2.27.0'
// https://jarcasting.com/artifacts/org.webjars.bower/github-com-mar10-fancytree/
implementation ("org.webjars.bower:github-com-mar10-fancytree:2.27.0")
'org.webjars.bower:github-com-mar10-fancytree:jar:2.27.0'
<dependency org="org.webjars.bower" name="github-com-mar10-fancytree" rev="2.27.0">
  <artifact name="github-com-mar10-fancytree" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.bower', module='github-com-mar10-fancytree', version='2.27.0')
)
libraryDependencies += "org.webjars.bower" % "github-com-mar10-fancytree" % "2.27.0"
[org.webjars.bower/github-com-mar10-fancytree "2.27.0"]

Dependencies

compile (2)

Group / Artifact Type Version
org.webjars.bower : jquery jar [1.7,)
org.webjars.bower : jquery-ui jar [1.8.6,)

Project Modules

There are no modules declared in this project.

logo Fancytree

GitHub version Build Status npm jsDelivr code style: prettier Released with: grunt-yabs StackOverflow: fancytree

Fancytree (sequel of DynaTree 1.x) is a JavaScript tree view / tree grid plugin with support for keyboard, inline editing, filtering, checkboxes, drag'n'drop, and lazy loading.

sample

Status

GitHub version See the change log for details.

Get Started

ES6 Quickstart

import $ from "jquery";

import 'jquery.fancytree/dist/skin-lion/ui.fancytree.less';  // CSS or LESS

import {createTree} from 'jquery.fancytree';

import 'jquery.fancytree/dist/modules/jquery.fancytree.edit';
import 'jquery.fancytree/dist/modules/jquery.fancytree.filter';

const tree = createTree('#tree', {
  extensions: ['edit', 'filter'],
  source: {...},
  ...
});
// Note: Loading and initialization may be asynchronous, so the nodes may not be accessible yet.

See module loader support and API docs.

Credits

Thanks to all contributors.

Versions

Version
2.27.0
2.21.0