PATH: /home/hwyuvbry/public_html/kerbau/assets/js
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 app-access-permission.js
↓
X
📄 app-access-roles.js
↓
X
📄 app-calendar-events.js
↓
X
📄 app-calendar.js
↓
X
📄 app-chat.js
↓
X
📄 app-email.js
↓
X
📄 app-invoice-add.js
↓
X
📄 app-invoice-edit.js
↓
X
📄 app-invoice-list.js
↓
X
📄 app-invoice-print.js
↓
X
📄 app-kanban.js
↓
X
📄 app-user-list.js
↓
X
📄 app-user-view-account.js
↓
X
📄 app-user-view-billing.js
↓
X
📄 app-user-view-security.js
↓
X
📄 app-user-view.js
↓
X
📄 cards-actions.js
↓
X
📄 cards-advance.js
↓
X
📄 cards-analytics.js
↓
X
📄 cards-statistics.js
↓
X
📄 charts-apex.js
↓
X
📄 charts-chartjs.js
↓
X
📄 config.js
↓
X
📄 dashboards-analytics.js
↓
X
📄 dashboards-crm.js
↓
X
📄 dashboards-ecommerce.js
↓
X
📄 extended-ui-blockui.js
↓
X
📄 extended-ui-drag-and-drop.js
↓
X
📄 extended-ui-media-player.js
↓
X
📄 extended-ui-misc-clipboardjs.js
↓
X
📄 extended-ui-misc-idle-timer.js
↓
X
📄 extended-ui-misc-numeraljs.js
↓
X
📄 extended-ui-perfect-scrollbar.js
↓
X
📄 extended-ui-star-ratings.js
↓
X
📄 extended-ui-sweetalert2.js
↓
X
📄 extended-ui-timeline.js
↓
X
📄 extended-ui-tour.js
↓
X
📄 extended-ui-treeview.js
↓
X
📄 form-basic-inputs.js
↓
X
📄 form-layouts.js
↓
X
📄 form-validation.js
↓
X
📄 form-wizard-icons.js
↓
X
📄 form-wizard-numbered.js
↓
X
📄 form-wizard-validation.js
↓
X
📄 forms-editors.js
↓
X
📄 forms-extras.js
↓
X
📄 forms-file-upload.js
↓
X
📄 forms-pickers.js
↓
X
📄 forms-selects.js
↓
X
📄 forms-sliders.js
↓
X
📄 forms-tagify.js
↓
X
📄 forms-typeahead.js
↓
X
📄 jquery.priceformat.min.js
↓
X
📄 main.js
↓
X
📄 maps-leaflet.js
↓
X
📄 modal-add-new-address.js
↓
X
📄 modal-add-new-cc.js
↓
X
📄 modal-add-permission.js
↓
X
📄 modal-add-role.js
↓
X
📄 modal-create-app.js
↓
X
📄 modal-edit-cc.js
↓
X
📄 modal-edit-permission.js
↓
X
📄 modal-edit-user.js
↓
X
📄 modal-enable-otp.js
↓
X
📄 modal-share-project.js
↓
X
📄 modal-two-factor-auth.js
↓
X
📄 offcanvas-add-payment.js
↓
X
📄 offcanvas-send-invoice.js
↓
X
📄 pages-account-settings-account.js
↓
X
📄 pages-account-settings-billing.js
↓
X
📄 pages-account-settings-security.js
↓
X
📄 pages-auth-multisteps.js
↓
X
📄 pages-auth-two-steps.js
↓
X
📄 pages-auth.js
↓
X
📄 pages-pricing.js
↓
X
📄 pages-profile.js
↓
X
📁 particles/
X
📄 tables-datatables-advanced.js
↓
X
📄 tables-datatables-basic.js
↓
X
📄 tables-datatables-extensions.js
↓
X
📄 ui-app-brand.js
↓
X
📄 ui-carousel.js
↓
X
📄 ui-menu.js
↓
X
📄 ui-modals.js
↓
X
📄 ui-navbar.js
↓
X
📄 ui-popover.js
↓
X
📄 ui-toasts.js
↓
X
📄 waves.js
↓
X
📄 wizard-ex-checkout.js
↓
X
📄 wizard-ex-create-deal.js
↓
X
📄 wizard-ex-property-listing.js
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: extended-ui-treeview.js
/** * Treeview (jquery) */ 'use strict'; $(function () { var theme = $('html').hasClass('light-style') ? 'default' : 'default-dark', basicTree = $('#jstree-basic'), customIconsTree = $('#jstree-custom-icons'), contextMenu = $('#jstree-context-menu'), dragDrop = $('#jstree-drag-drop'), checkboxTree = $('#jstree-checkbox'), ajaxTree = $('#jstree-ajax'); // Basic // -------------------------------------------------------------------- if (basicTree.length) { basicTree.jstree({ core: { themes: { name: theme } } }); } // Custom Icons // -------------------------------------------------------------------- if (customIconsTree.length) { customIconsTree.jstree({ core: { themes: { name: theme }, data: [ { text: 'css', children: [ { text: 'app.css', type: 'css' }, { text: 'style.css', type: 'css' } ] }, { text: 'img', state: { opened: true }, children: [ { text: 'bg.jpg', type: 'img' }, { text: 'logo.png', type: 'img' }, { text: 'avatar.png', type: 'img' } ] }, { text: 'js', state: { opened: true }, children: [ { text: 'jquery.js', type: 'js' }, { text: 'app.js', type: 'js' } ] }, { text: 'index.html', type: 'html' }, { text: 'page-one.html', type: 'html' }, { text: 'page-two.html', type: 'html' } ] }, plugins: ['types'], types: { default: { icon: 'ti ti-folder' }, html: { icon: 'ti ti-brand-html5 text-danger' }, css: { icon: 'ti ti-brand-css3 text-info' }, img: { icon: 'ti ti-photo text-success' }, js: { icon: 'ti ti-brand-javascript text-warning' } } }); } // Context Menu // -------------------------------------------------------------------- if (contextMenu.length) { contextMenu.jstree({ core: { themes: { name: theme }, check_callback: true, data: [ { text: 'css', children: [ { text: 'app.css', type: 'css' }, { text: 'style.css', type: 'css' } ] }, { text: 'img', state: { opened: true }, children: [ { text: 'bg.jpg', type: 'img' }, { text: 'logo.png', type: 'img' }, { text: 'avatar.png', type: 'img' } ] }, { text: 'js', state: { opened: true }, children: [ { text: 'jquery.js', type: 'js' }, { text: 'app.js', type: 'js' } ] }, { text: 'index.html', type: 'html' }, { text: 'page-one.html', type: 'html' }, { text: 'page-two.html', type: 'html' } ] }, plugins: ['types', 'contextmenu'], types: { default: { icon: 'ti ti-folder' }, html: { icon: 'ti ti-brand-html5 text-danger' }, css: { icon: 'ti ti-brand-css3 text-info' }, img: { icon: 'ti ti-photo text-success' }, js: { icon: 'ti ti-brand-javascript text-warning' } } }); } // Drag Drop // -------------------------------------------------------------------- if (dragDrop.length) { dragDrop.jstree({ core: { themes: { name: theme }, check_callback: true, data: [ { text: 'css', children: [ { text: 'app.css', type: 'css' }, { text: 'style.css', type: 'css' } ] }, { text: 'img', state: { opened: true }, children: [ { text: 'bg.jpg', type: 'img' }, { text: 'logo.png', type: 'img' }, { text: 'avatar.png', type: 'img' } ] }, { text: 'js', state: { opened: true }, children: [ { text: 'jquery.js', type: 'js' }, { text: 'app.js', type: 'js' } ] }, { text: 'index.html', type: 'html' }, { text: 'page-one.html', type: 'html' }, { text: 'page-two.html', type: 'html' } ] }, plugins: ['types', 'dnd'], types: { default: { icon: 'ti ti-folder' }, html: { icon: 'ti ti-brand-html5 text-danger' }, css: { icon: 'ti ti-brand-css3 text-info' }, img: { icon: 'ti ti-photo text-success' }, js: { icon: 'ti ti-brand-javascript text-warning' } } }); } // Checkbox // -------------------------------------------------------------------- if (checkboxTree.length) { checkboxTree.jstree({ core: { themes: { name: theme }, data: [ { text: 'css', children: [ { text: 'app.css', type: 'css' }, { text: 'style.css', type: 'css' } ] }, { text: 'img', state: { opened: true }, children: [ { text: 'bg.jpg', type: 'img' }, { text: 'logo.png', type: 'img' }, { text: 'avatar.png', type: 'img' } ] }, { text: 'js', state: { opened: true }, children: [ { text: 'jquery.js', type: 'js' }, { text: 'app.js', type: 'js' } ] }, { text: 'index.html', type: 'html' }, { text: 'page-one.html', type: 'html' }, { text: 'page-two.html', type: 'html' } ] }, plugins: ['types', 'checkbox', 'wholerow'], types: { default: { icon: 'ti ti-folder' }, html: { icon: 'ti ti-brand-html5 text-danger' }, css: { icon: 'ti ti-brand-css3 text-info' }, img: { icon: 'ti ti-photo text-success' }, js: { icon: 'ti ti-brand-javascript text-warning' } } }); } // Ajax Example // -------------------------------------------------------------------- if (ajaxTree.length) { ajaxTree.jstree({ core: { themes: { name: theme }, data: { url: assetsPath + 'json/jstree-data.json', dataType: 'json', data: function (node) { return { id: node.id }; } } }, plugins: ['types', 'state'], types: { default: { icon: 'ti ti-folder' }, html: { icon: 'ti ti-brand-html5 text-danger' }, css: { icon: 'ti ti-brand-css3 text-info' }, img: { icon: 'ti ti-photo text-success' }, js: { icon: 'ti ti-brand-javascript text-warning' } } }); } });
SIMPAN PERUBAHAN