Server IP : 150.95.80.236 / Your IP : 3.144.248.122 Web Server : Apache System : Linux host-150-95-80-236 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64 User : social-telecare ( 10000) PHP Version : 7.4.33 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/pcu.in.th/sc.pcu.in.th/demo15/src/js/custom/documentation/general/jstree/ |
Upload File : |
"use strict"; // Class definition var KTJSTreeAjax = function() { // Private functions var exampleAjax = function() { $("#kt_docs_jstree_ajax").jstree({ "core": { "themes": { "responsive": false }, // so that create works "check_callback": true, 'data': { 'url': function(node) { return 'https://preview.keenthemes.com/api/jstree/ajax_data.php'; // Demo API endpoint -- Replace this URL with your set endpoint }, 'data': function(node) { return { 'parent': node.id }; } } }, "types": { "default": { "icon": "fa fa-folder text-primary" }, "file": { "icon": "fa fa-file text-primary" } }, "state": { "key": "demo3" }, "plugins": ["dnd", "state", "types"] }); } return { // Public Functions init: function() { exampleAjax(); } }; }(); // On document ready KTUtil.onDOMContentLoaded(function() { KTJSTreeAjax.init(); });