core/api/modules/a_tovar_cat/mod.js

95 lines
3.4 KiB
JavaScript
Executable File

/*$(".del_page").click(function(event){
var a=$(this).attr('href');
var b=$(this).attr('title');//пишем название категории в скрытое поле
$('#tmp').val(a);//пишем ид категории в скрытое поле
$('#tmp2').val(b);
$('#modal_txt').text(b);
$('#exampleModal').modal('show');
return false;
})*/
//кнопка удаления в модальном окошке
$("#del").click(function(event) {
$.ajax({ type: "POST", url: '/act/page_all', data: "act=del_page&id=" + $('#tmp').val() });
$('tr#' + $('#tmp').val()).hide('2000');
$('#exampleModal').modal('hide');
})
$(".del_cat").click(function(event) {
var id = $(this).attr('href');
//$.ajax({type:"POST",url:'/act/page_all',data:"id="+id});
return false;
})
//Кнопка удаления в списке контента
$(".del_page").click(function(event) {
var id = $(this).data('id');
//alert(id);
$('#del_id').val(id);
})
// Кнопка удаления в модальном окошке
$(".del_page_in_modal").click(function(event) {
var id = $('#del_id').val();
// alert(id);
$.ajax({
type: "POST",
url: '/act/page_all',
data: "act=del_page&id=" + id
});
//
$("#tr_cat_" + id).hide(1000);
$("#btn_close_del").click();
//$('#modal_del_page').modal('hide');
})
//кнопка добавления категории
$("#btn-add-new-cat").click(function(event) {
var input_new_cat = $('#input_new_cat').val();
var parent_id = $('#input_parrent').val();
var input_new_cat_description = $('#input_new_cat_description').val();
var input_new_cat_keywords = $('#input_new_cat_keywords').val();
var input_new_cat_edit_id = $('#input_new_cat_edit_id').val();
$.ajax({
type: "POST",
url: '/act/a_tovar_cat',
data: "act=new_cat&input_new_cat=" + input_new_cat + "&parent_id=" + parent_id + "&input_new_cat_description=" + input_new_cat_description + "&input_new_cat_keywords=" + input_new_cat_keywords + "&input_new_cat_edit_id=" + input_new_cat_edit_id
});
setTimeout(function() {
location.reload();
}, 1500);
})
//Быстрое редактирование категорий в модальном окне, пересмотреть концепцию
$(".qe").click(function(event) {
//Придаем заголовок
$("#modal_label_edit").text("Редактирование категории");
//alert("Click Me");
var id = $(this).data('id');
var parent_id = $("#parent_id").val();
//alert(id);
$("#input_new_cat").val($("#qe_b_title_" + id).text());
$("#input_new_cat_description").val($("#qe_b_desc_" + id).text());
$("#input_new_cat_keywords").val($("#qe_b_keywords_" + id).text());
$("#input_new_cat_edit_id").val(id);
$("#input_parrent").val(parent_id);
})
//Кнопка создания категории
$("#btn_new_cat").click(function(event) {
//Придаем заголовок
$("#modal_label_edit").text("Создать категорию");
//alert("Click Me");
var id = $(this).data('id');
var parent_id = $("#parent_id").val();
//alert(id);
$("#input_new_cat").val("");
$("#input_new_cat_description").val("");
$("#input_new_cat_keywords").val("");
$("#input_new_cat_edit_id").val("");
$("#input_parrent").val(parent_id);
})