📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
falscripti.demodesign.com.tr
/
ns-admin
/
assets
/
js
/
pages
📝
table-editable.int.js
← Geri Dön
/* Template Name: Minia - Admin & Dashboard Template Author: Themesbrand Website: https://themesbrand.com/ Contact: themesbrand@gmail.com File: Table editable Init Js File */ // table edits table $(function () { var pickers = {}; $('.table-edits tr').editable({ dropdowns: { gender: ['Male', 'Female'] }, edit: function (values) { $(".edit i", this) .removeClass('fa-pencil-alt') .addClass('fa-save') .attr('title', 'Save'); }, save: function (values) { $(".edit i", this) .removeClass('fa-save') .addClass('fa-pencil-alt') .attr('title', 'Edit'); if (this in pickers) { pickers[this].destroy(); delete pickers[this]; } }, cancel: function (values) { $(".edit i", this) .removeClass('fa-save') .addClass('fa-pencil-alt') .attr('title', 'Edit'); if (this in pickers) { pickers[this].destroy(); delete pickers[this]; } } }); });
💾 Kaydet
İptal
📝 Yeniden Adlandır
İptal
Kaydet
🔐 Dosya İzinleri (chmod)
İzin Değeri:
Hızlı Seçim:
777
755
644
600
777
= Herkes okur/yazar/çalıştırır
755
= Sahip tam, diğerleri okur/çalıştırır
644
= Sahip okur/yazar, diğerleri okur
600
= Sadece sahip okur/yazar
İptal
Uygula