All Projects → mbraak → Jqtree

mbraak / Jqtree

Licence: apache-2.0
Tree widget for jQuery

Programming Languages

javascript
184084 projects - #8 most used programming language
typescript
32286 projects

Projects that are alternatives of or similar to Jqtree

Gijgo
Gijgo - Free Javascript Controls
Stars: ✭ 424 (-56.6%)
Mutual labels:  tree, jquery
Orgchart
It's a simple and direct organization chart plugin. Anytime you want a tree-like chart, you can turn to OrgChart.
Stars: ✭ 2,325 (+137.97%)
Mutual labels:  tree, jquery
Tree printer
A Java class for printing binary trees as ASCII text
Stars: ✭ 20 (-97.95%)
Mutual labels:  tree
Price Tracker
Live and historical prices for fiat currencies, crypto currencies and gold/silver over REST and WebSocket APIs, using Redis as storage. Node.js, jQuery, Bootstrap
Stars: ✭ 32 (-96.72%)
Mutual labels:  jquery
Js Tree List
Convert list to tree, managing a tree and its nodes.
Stars: ✭ 30 (-96.93%)
Mutual labels:  tree
Sticky Nav
A jQuery plugin make the navbar sticky, smart anchor link highlighting, smooth scrolling. Simple and powerful.
Stars: ✭ 21 (-97.85%)
Mutual labels:  jquery
Learningprocess
💥 本仓库用于记录我的学习历程和学习笔记
Stars: ✭ 31 (-96.83%)
Mutual labels:  jquery
React Native Pathjs Charts
Android and iOS charts based on react-native-svg and paths-js
Stars: ✭ 877 (-10.24%)
Mutual labels:  tree
Layout Spliter
Split label(horizontal,vertical),you can make a layout whatever you want !
Stars: ✭ 34 (-96.52%)
Mutual labels:  jquery
Vent
jQuery inspired DOM events library
Stars: ✭ 30 (-96.93%)
Mutual labels:  jquery
Algorithms
Study cases for Algorithms and Data Structures.
Stars: ✭ 32 (-96.72%)
Mutual labels:  tree
Jquery Minicolors
jQuery MiniColors Plugin
Stars: ✭ 948 (-2.97%)
Mutual labels:  jquery
Taro
开放式跨端跨框架解决方案,支持使用 React/Vue/Nerv 等框架来开发微信/京东/百度/支付宝/字节跳动/ QQ 小程序/H5/React Native 等应用。 https://taro.zone/
Stars: ✭ 30,230 (+2994.17%)
Mutual labels:  jquery
Why Frameworks Matter
Why vanilla JavaScript isn't used for large applications
Stars: ✭ 32 (-96.72%)
Mutual labels:  jquery
Ruoyi
(RuoYi)官方仓库 基于SpringBoot的权限管理系统 易读易懂、界面简洁美观。 核心技术采用Spring、MyBatis、Shiro没有任何其它重度依赖。直接运行即可用
Stars: ✭ 905 (-7.37%)
Mutual labels:  jquery
Jquery.lazy
A lightweight, fast, feature-rich, powerful and highly configurable delayed content, image and background lazy loading plugin for jQuery & Zepto.
Stars: ✭ 965 (-1.23%)
Mutual labels:  jquery
Framecarousel
A jQuery plugin for quickly creating carousels within frames
Stars: ✭ 14 (-98.57%)
Mutual labels:  jquery
Ruhuman
simple captcha alternative
Stars: ✭ 29 (-97.03%)
Mutual labels:  jquery
Parallax background
jQuery parallax background plugin based on GSAP
Stars: ✭ 30 (-96.93%)
Mutual labels:  jquery
Pymap webapp
A webapp version for Raster Map Download Helper
Stars: ✭ 34 (-96.52%)
Mutual labels:  jquery

Build Coverage Status

NPM version

jqTree

JqTree is a tree widget. Read more in the documentation.

screenshot

Features

  • Create a tree from JSON data
  • Drag and drop
  • Works on ie9+, firefox, chrome and safari
  • Written in Typescript

The project is hosted on github, has a test suite.

Examples

Example with ajax data:

<div id="tree1" data-url="/example_data/"></div>
$("#tree1").tree();

Example with static data:

var data = [
    {
        label: "node1",
        id: 1,
        children: [{ label: "child1", id: 2 }, { label: "child2", id: 3 }]
    },
    {
        label: "node2",
        id: 4,
        children: [{ label: "child3", id: 5 }]
    }
];
$("#tree1").tree({
    data: data,
    autoOpen: true,
    dragAndDrop: true
});

Documentation

The documentation is on http://mbraak.github.io/jqTree/.

Thanks

The code for the mouse widget is heavily inspired by the mouse widget from jquery ui.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].