Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/public/uploads/.././js/customer
الملفات الموجودة في هذا الـ Path:
.
..
campaign.js
campaign_statistic.js
compose.js
contact.js
dashboard.js
domain.js
email_account.js
email_template.js
form.js
group.js
inbox.js
label.js
lead_finder.js
list_builder.js
queue.js
sender.js
sent.js
settings.js
ticket.js

مشاهدة ملف: ticket.js

"use strict";
$('#customerTickets').DataTable({
    processing: true,
    serverSide: true,
    responsive:true,
    ajax:'/ticket/get-all',
    columns: [
        { "data": "subject" },
        { "data": "description" },
        { "data": "status" },
        { "data": "action" },
    ]
});

$(".textBoxClass").keypress(function (e) {
    // if the key pressed is the enter key
    if (e.which == 13) {
        $('#messageForm').submit();
    }
});

$('.fa-times').on('click', function (e){
    location.href='/ticket';
});