66 lines
1.3 KiB
JavaScript
Executable File
66 lines
1.3 KiB
JavaScript
Executable File
/* ----------------------------------------------------------------------
|
|
26.03.2025
|
|
Меняем категорию
|
|
|
|
---------------------------------------------------------------------- */
|
|
$(".checkboxStatus").click(function () {
|
|
|
|
if ($(this).is(':checked')) {
|
|
var status = 1;
|
|
} else {
|
|
var status = 0;
|
|
//$("#li_" + $(this).data('id')).hide();
|
|
}
|
|
|
|
$.ajax({
|
|
type: "POST",
|
|
url: '/act/slider_edit',
|
|
cache: false,
|
|
data: 'act=changeStatus&id=' + $(this).data('id') + "&status="+ status,
|
|
|
|
success: function (data) {
|
|
//$("#div_log").append("<p>Изменен статус</p>")
|
|
}
|
|
});
|
|
|
|
|
|
});
|
|
|
|
|
|
//Создаем группу
|
|
|
|
$("#btnNewGroupe").click(function () {
|
|
|
|
$.ajax({
|
|
type: "POST",
|
|
url: '/act/slider_edit',
|
|
cache: false,
|
|
data: 'act=newGroupe&title='+ $("#newGroupe").val(),
|
|
success: function (data) {
|
|
}
|
|
|
|
})
|
|
|
|
setTimeout(function(){ window.location.reload(); },2000);
|
|
});
|
|
|
|
//Создаем группу
|
|
|
|
$(".delCat").click(function () {
|
|
|
|
$.ajax({
|
|
type: "POST",
|
|
url: '/act/slider_edit',
|
|
cache: false,
|
|
data: 'act=delGroupe&id='+ $(this).data('id'),
|
|
success: function (data) {
|
|
}
|
|
|
|
})
|
|
|
|
$("#c_" + $(this).data('id')) .hide();
|
|
});
|
|
|
|
|
|
|
|
|