Наконец, после того, как я обведу круг, мне нужно добавить method()
в мои php-файлы, затем в моем dataSource / transport нужно вернуть методу значение data: {method: "addCategory"},
Пример ниже.
<?php
$method = $_POST['method'];
$method();
class Categories {
function getCategory(){
//codes in here
}
function addCategory(){
//codes in here
}
function editCategory(){
//codes in here
}
function deleteCategory(){
//codes in here
}
}
?>
transport: {
read: {
url: "category.php",
type: "POST",
data: function() {
return {
method: "getCategory",
c1: document.getElementById('c1').checked,
}
},
},
create: {
url: "category.php",
type: "POST",
data: {method: "addCategory"},
complete: function (e) {
$('#grid').data('kendoGrid').dataSource.read();
}
},
update: {
url: "category.php",
type: "POST",
data: {method: "editCategory"},
complete: function (e) {
$('#grid').data('kendoGrid').dataSource.read();
}
},
destroy: {
url: "category.php",
type: "POST",
data: {method: "deleteCategory"},
complete: function (e) {
$('#grid').data('kendoGrid').dataSource.read();
}
},
},