Skip to content

sagar1312/tree

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rc-tree


tree ui component for react

NPM version build status Test coverage gemnasium deps node version npm download Sauce Test Status

Sauce Test Status

Screenshots

Feature

  • support ie8,ie8+,chrome,firefox,safari

Example

http://localhost:8018/examples/

online example: http://react-component.github.io/tree/examples/

install

rc-tree

Usage

var React = require('react');
var Tree = require('rc-tree');
var TreeNode = Tree.TreeNode;
React.render(
  <Tree>
    <TreeNode>leaf </TreeNode>
    <TreeNode>leaf </TreeNode>
  <Tree/>, container);

API

Tree props

name description type default
className additional css class of root dom node String ''
prefixCls prefix class String ''
showLine whether show line bool true
showIcon whether show icon bool true
checkable whether support checked bool false
expandAll expand all treeNodes bool false
onSelect click the TreeNode to fire(auto switch selected state) function -
onChecked click the TreeNode's checkbox to checked(auto switch checked state) function -

TreeNode props

name description type default
className additional class to treeNode String ''
title tree/subTree's title String '---'
defaultExpanded whether default expand the treeNode bool false
expanded whether expand the treeNode, it's controlled bool false

Keyboard

  • KeyDown/KeyUp

Development

npm install
npm start

Test Case

http://localhost:8003/tests/runner.html?coverage

Coverage

http://localhost:8003/node_modules/rc-server/node_modules/node-jscover/lib/front-end/jscoverage.html?w=http://localhost:8003/tests/runner.html?coverage

License

rc-tree is released under the MIT license.

Packages

No packages published

Languages

  • JavaScript 83.8%
  • CSS 16.1%
  • HTML 0.1%