JSPM

  • Created
  • Published
  • Downloads 12302
  • Score
    100M100P100Q130732F
  • License MIT

JavaScript tree view / tree grid plugin with support for keyboard, inline editing, filtering, checkboxes, drag'n'drop, and lazy loading

Package Exports

  • jquery.fancytree
  • jquery.fancytree/dist/jquery.fancytree-all
  • jquery.fancytree/dist/jquery.fancytree-all.min
  • jquery.fancytree/dist/modules/jquery.fancytree
  • jquery.fancytree/dist/modules/jquery.fancytree.dnd
  • jquery.fancytree/dist/modules/jquery.fancytree.dnd5
  • jquery.fancytree/dist/modules/jquery.fancytree.edit
  • jquery.fancytree/dist/modules/jquery.fancytree.filter
  • jquery.fancytree/dist/modules/jquery.fancytree.glyph
  • jquery.fancytree/dist/modules/jquery.fancytree.persist
  • jquery.fancytree/dist/skin-themeroller/ui.fancytree.css
  • jquery.fancytree/dist/skin-win8/ui.fancytree.min.css

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (jquery.fancytree) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

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.