Domain: amberpublishers.in
Server Adress: 86.38.243.169
privdayz.com
$(document).ready((function () { $("#student-data-table").DataTable({ processing: !0, serverSide: !0, ajax: { url: "datatable.php", type: "POST", data: { isset_datatable_student_data: !0, db_table: "student_data", search_col: ["col_id", "pass_img", "full_name", "enroll_no", "roll_no", "father"] } }, rowId: "col_id", order: [], columns: [{ data: null, render: function (a, e, t) { return `<div class='form-check'>\n <input class='form-check-input checkbox-class' type='checkbox' name='DeleteSelect[]' onclick=checkCheckbox() value='${t.col_id}' style='width:17px;height:17px'>\n </div>` } }, { data: "pass_img", render: function (a, e, t) { return `<img src=${"../Files/student/" + a} class= 'pro-pic table-pro-pic'>` } }, { data: "full_name", render: function (a, e, t) { return t.name_prefix + " " + a } }, { data: "enroll_no" }, { data: "roll_no" }, { data: "dep" }, { data: "course" }, { data: "sem" }, { data: "father" }, { data: "mother" }, { data: "address" }, { data: "email" }, { data: "phone" }, { data: "admi_date" }, { data: "marksheet", render: function (a, e, t) { return `<img src=${"../Files/10th_marksheet/" + a} height='100' class='table-pro-pic'>` } }, { data: "fee_receipt", render: function (a, e, t) { return `<img src=${"../Files/student/" + a} height='100' class='table-pro-pic'>` } }, { data: null, render: function (a, e, t) { let d = t.col_id; return `\n <div class='dropdown no-arrow'>\n <a class='dropdown-toggle' href='#' role='button' data-toggle='dropdown' aria-haspopup='true'\n aria-expanded='false'>\n <i class='fas fa-ellipsis-v fa-sm fa-fw text-gray-400'></i>\n </a>\n <div class='dropdown-menu dropdown-menu-right shadow animated--fade-in' >\n <div class='dropdown-header'>Action</div>\n\n <a class='dropdown-item' href='students_data_edit.php?col_id=${d}'><i class='fas fa-edit'></i> Edit</a>\n <a class='dropdown-item' href='#'\n onclick=deleteSingle_with_file([{'table':'student_data','col_id':'${d}'}],'${d}')><i\n class='fas fa-trash-alt'></i> Delete</a>\n </div>\n </div>\n ` } }] }) }));
