docs/treeview.rst
author Radek Brich <radek.brich@devl.cz>
Wed, 03 Sep 2014 08:57:24 +0200
changeset 108 11dac45bfba4
parent 38 c6e170452c7f
permissions -rw-r--r--
Fix cursor.

TreeView
========

.. toctree::
   :maxdepth: 3
   :titlesonly:

.. automodule:: tuikit.treeview
   :members:
   :show-inheritance:


Path
----
The path may be string or list. Components are names or indexes.
String path uses slash char as separator, names as components.

Examples:
 * '/'
 * '/a/b/c'
 * ['a', 'b', 'c']
 * [0, 3, 1]