This commit is contained in:
2026-04-07 14:50:23 +09:00
commit b4e485502b
4778 changed files with 2017091 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

View File

@@ -0,0 +1,89 @@
/**
* 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" ]
});
});

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

File diff suppressed because it is too large Load Diff