| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- /**
- * Theme: Uplon Admin Template
- * Author: Coderthemes
- * Tree view
- */
-
- $( document ).ready(function() {
- // Basic
- $('#basicTree').jstree({
- 'core' : {
- 'themes' : {
- 'responsive': false
- }
- },
- 'types' : {
- 'default' : {
- 'icon' : 'icofont icofont-folder'
- },
- 'file' : {
- 'icon' : 'icofont icofont-file-alt'
- }
- },
- 'plugins' : ['types']
- });
-
- // Checkbox
- $('#checkTree').jstree({
- 'core' : {
- 'themes' : {
- 'responsive': false
- }
- },
- 'types' : {
- 'default' : {
- 'icon' : 'icofont icofont-folder'
- },
- 'file' : {
- 'icon' : 'icofont icofont-file-alt'
- }
- },
- 'plugins' : ['types', 'checkbox']
- });
-
- // Drag & Drop
- $('#dragTree').jstree({
- 'core' : {
- 'check_callback' : true,
- 'themes' : {
- 'responsive': false
- }
- },
- 'types' : {
- 'default' : {
- 'icon' : 'icofont icofont-folder'
- },
- 'file' : {
- 'icon' : 'icofont icofont-file-alt'
- }
- },
- 'plugins' : ['types', 'dnd']
- });
-
- // Ajax
- $('#ajaxTree').jstree({
- 'core' : {
- 'check_callback' : true,
- 'themes' : {
- 'responsive': false
- },
- 'data' : {
- 'url' : function (node) {
- return node.id === '#' ? 'assets/plugins/jstree/ajax_roots.json' : 'assets/plugins/jstree/ajax_children.json';
- },
- 'data' : function (node) {
- return { 'id' : node.id };
- }
- }
- },
- "types" : {
- 'default' : {
- 'icon' : 'icofont icofont-folder'
- },
- 'file' : {
- 'icon' : 'icofont icofont-file-alt'
- }
- },
- "plugins" : [ "contextmenu", "dnd", "search", "state", "types", "wholerow" ]
- });
- });
|