826 lines
		
	
	
		
			30 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			826 lines
		
	
	
		
			30 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/**
 | 
						|
 * DataTables Basic
 | 
						|
 */
 | 
						|
 | 
						|
'use strict';
 | 
						|
 | 
						|
let fv, offCanvasEl;
 | 
						|
document.addEventListener('DOMContentLoaded', function (e) {
 | 
						|
  (function () {
 | 
						|
    const formAddNewRecord = document.getElementById('form-add-new-record');
 | 
						|
 | 
						|
    setTimeout(() => {
 | 
						|
      const newRecord = document.querySelector('.create-new'),
 | 
						|
        offCanvasElement = document.querySelector('#add-new-record');
 | 
						|
 | 
						|
      // To open offCanvas, to add new record
 | 
						|
      if (newRecord) {
 | 
						|
        newRecord.addEventListener('click', function () {
 | 
						|
          offCanvasEl = new bootstrap.Offcanvas(offCanvasElement);
 | 
						|
          // Empty fields on offCanvas open
 | 
						|
          (offCanvasElement.querySelector('.dt-full-name').value = ''),
 | 
						|
            (offCanvasElement.querySelector('.dt-post').value = ''),
 | 
						|
            (offCanvasElement.querySelector('.dt-email').value = ''),
 | 
						|
            (offCanvasElement.querySelector('.dt-date').value = ''),
 | 
						|
            (offCanvasElement.querySelector('.dt-salary').value = '');
 | 
						|
          // Open offCanvas with form
 | 
						|
          offCanvasEl.show();
 | 
						|
        });
 | 
						|
      }
 | 
						|
    }, 200);
 | 
						|
 | 
						|
    // Form validation for Add new record
 | 
						|
    fv = FormValidation.formValidation(formAddNewRecord, {
 | 
						|
      fields: {
 | 
						|
        basicFullname: {
 | 
						|
          validators: {
 | 
						|
            notEmpty: {
 | 
						|
              message: 'The name is required'
 | 
						|
            }
 | 
						|
          }
 | 
						|
        },
 | 
						|
        basicPost: {
 | 
						|
          validators: {
 | 
						|
            notEmpty: {
 | 
						|
              message: 'Post field is required'
 | 
						|
            }
 | 
						|
          }
 | 
						|
        },
 | 
						|
        basicEmail: {
 | 
						|
          validators: {
 | 
						|
            notEmpty: {
 | 
						|
              message: 'The Email is required'
 | 
						|
            },
 | 
						|
            emailAddress: {
 | 
						|
              message: 'The value is not a valid email address'
 | 
						|
            }
 | 
						|
          }
 | 
						|
        },
 | 
						|
        basicDate: {
 | 
						|
          validators: {
 | 
						|
            notEmpty: {
 | 
						|
              message: 'Joining Date is required'
 | 
						|
            },
 | 
						|
            date: {
 | 
						|
              format: 'MM/DD/YYYY',
 | 
						|
              message: 'The value is not a valid date'
 | 
						|
            }
 | 
						|
          }
 | 
						|
        },
 | 
						|
        basicSalary: {
 | 
						|
          validators: {
 | 
						|
            notEmpty: {
 | 
						|
              message: 'Basic Salary is required'
 | 
						|
            }
 | 
						|
          }
 | 
						|
        }
 | 
						|
      },
 | 
						|
      plugins: {
 | 
						|
        trigger: new FormValidation.plugins.Trigger(),
 | 
						|
        bootstrap5: new FormValidation.plugins.Bootstrap5({
 | 
						|
          // Use this for enabling/changing valid/invalid class
 | 
						|
          // eleInvalidClass: '',
 | 
						|
          eleValidClass: '',
 | 
						|
          rowSelector: '.col-sm-12'
 | 
						|
        }),
 | 
						|
        submitButton: new FormValidation.plugins.SubmitButton(),
 | 
						|
        // defaultSubmit: new FormValidation.plugins.DefaultSubmit(),
 | 
						|
        autoFocus: new FormValidation.plugins.AutoFocus()
 | 
						|
      },
 | 
						|
      init: instance => {
 | 
						|
        instance.on('plugins.message.placed', function (e) {
 | 
						|
          if (e.element.parentElement.classList.contains('input-group')) {
 | 
						|
            e.element.parentElement.insertAdjacentElement('afterend', e.messageElement);
 | 
						|
          }
 | 
						|
        });
 | 
						|
      }
 | 
						|
    });
 | 
						|
 | 
						|
    // FlatPickr Initialization & Validation
 | 
						|
    const flatpickrDate = document.querySelector('[name="basicDate"]');
 | 
						|
 | 
						|
    if (flatpickrDate) {
 | 
						|
      flatpickrDate.flatpickr({
 | 
						|
        enableTime: false,
 | 
						|
        // See https://flatpickr.js.org/formatting/
 | 
						|
        dateFormat: 'm/d/Y',
 | 
						|
        // After selecting a date, we need to revalidate the field
 | 
						|
        onChange: function () {
 | 
						|
          fv.revalidateField('basicDate');
 | 
						|
        }
 | 
						|
      });
 | 
						|
    }
 | 
						|
  })();
 | 
						|
});
 | 
						|
 | 
						|
// datatable (jquery)
 | 
						|
$(function () {
 | 
						|
  var dt_basic_table = $('.datatables-basic'),
 | 
						|
    dt_complex_header_table = $('.dt-complex-header'),
 | 
						|
    dt_row_grouping_table = $('.dt-row-grouping'),
 | 
						|
    dt_multilingual_table = $('.dt-multilingual'),
 | 
						|
    dt_basic;
 | 
						|
 | 
						|
  // DataTable with buttons
 | 
						|
  // --------------------------------------------------------------------
 | 
						|
 | 
						|
  if (dt_basic_table.length) {
 | 
						|
    dt_basic = dt_basic_table.DataTable({
 | 
						|
      ajax: assetsPath + 'json/table-datatable.json',
 | 
						|
      columns: [
 | 
						|
        { data: '' },
 | 
						|
        { data: 'id' },
 | 
						|
        { data: 'id' },
 | 
						|
        { data: 'full_name' },
 | 
						|
        { data: 'email' },
 | 
						|
        { data: 'start_date' },
 | 
						|
        { data: 'salary' },
 | 
						|
        { data: 'status' },
 | 
						|
        { data: '' }
 | 
						|
      ],
 | 
						|
      columnDefs: [
 | 
						|
        {
 | 
						|
          // For Responsive
 | 
						|
          className: 'control',
 | 
						|
          orderable: false,
 | 
						|
          searchable: false,
 | 
						|
          responsivePriority: 2,
 | 
						|
          targets: 0,
 | 
						|
          render: function (data, type, full, meta) {
 | 
						|
            return '';
 | 
						|
          }
 | 
						|
        },
 | 
						|
        {
 | 
						|
          // For Checkboxes
 | 
						|
          targets: 1,
 | 
						|
          orderable: false,
 | 
						|
          searchable: false,
 | 
						|
          responsivePriority: 3,
 | 
						|
          checkboxes: true,
 | 
						|
          render: function () {
 | 
						|
            return '<input type="checkbox" class="dt-checkboxes form-check-input">';
 | 
						|
          },
 | 
						|
          checkboxes: {
 | 
						|
            selectAllRender: '<input type="checkbox" class="form-check-input">'
 | 
						|
          }
 | 
						|
        },
 | 
						|
        {
 | 
						|
          targets: 2,
 | 
						|
          searchable: false,
 | 
						|
          visible: false
 | 
						|
        },
 | 
						|
        {
 | 
						|
          // Avatar image/badge, Name and post
 | 
						|
          targets: 3,
 | 
						|
          responsivePriority: 4,
 | 
						|
          render: function (data, type, full, meta) {
 | 
						|
            var $user_img = full['avatar'],
 | 
						|
              $name = full['full_name'],
 | 
						|
              $post = full['post'];
 | 
						|
            if ($user_img) {
 | 
						|
              // For Avatar image
 | 
						|
              var $output =
 | 
						|
                '<img src="' + assetsPath + 'img/avatars/' + $user_img + '" alt="Avatar" class="rounded-circle">';
 | 
						|
            } else {
 | 
						|
              // For Avatar badge
 | 
						|
              var stateNum = Math.floor(Math.random() * 6);
 | 
						|
              var states = ['success', 'danger', 'warning', 'info', 'dark', 'primary', 'secondary'];
 | 
						|
              var $state = states[stateNum],
 | 
						|
                $name = full['full_name'],
 | 
						|
                $initials = $name.match(/\b\w/g) || [];
 | 
						|
              $initials = (($initials.shift() || '') + ($initials.pop() || '')).toUpperCase();
 | 
						|
              $output = '<span class="avatar-initial rounded-circle bg-label-' + $state + '">' + $initials + '</span>';
 | 
						|
            }
 | 
						|
            // Creates full output for row
 | 
						|
            var $row_output =
 | 
						|
              '<div class="d-flex justify-content-start align-items-center user-name">' +
 | 
						|
              '<div class="avatar-wrapper">' +
 | 
						|
              '<div class="avatar me-2">' +
 | 
						|
              $output +
 | 
						|
              '</div>' +
 | 
						|
              '</div>' +
 | 
						|
              '<div class="d-flex flex-column">' +
 | 
						|
              '<span class="emp_name text-truncate">' +
 | 
						|
              $name +
 | 
						|
              '</span>' +
 | 
						|
              '<small class="emp_post text-truncate text-muted">' +
 | 
						|
              $post +
 | 
						|
              '</small>' +
 | 
						|
              '</div>' +
 | 
						|
              '</div>';
 | 
						|
            return $row_output;
 | 
						|
          }
 | 
						|
        },
 | 
						|
        {
 | 
						|
          responsivePriority: 1,
 | 
						|
          targets: 4
 | 
						|
        },
 | 
						|
        {
 | 
						|
          // Label
 | 
						|
          targets: -2,
 | 
						|
          render: function (data, type, full, meta) {
 | 
						|
            var $status_number = full['status'];
 | 
						|
            var $status = {
 | 
						|
              1: { title: 'Current', class: 'bg-label-primary' },
 | 
						|
              2: { title: 'Professional', class: ' bg-label-success' },
 | 
						|
              3: { title: 'Rejected', class: ' bg-label-danger' },
 | 
						|
              4: { title: 'Resigned', class: ' bg-label-warning' },
 | 
						|
              5: { title: 'Applied', class: ' bg-label-info' }
 | 
						|
            };
 | 
						|
            if (typeof $status[$status_number] === 'undefined') {
 | 
						|
              return data;
 | 
						|
            }
 | 
						|
            return (
 | 
						|
              '<span class="badge ' + $status[$status_number].class + '">' + $status[$status_number].title + '</span>'
 | 
						|
            );
 | 
						|
          }
 | 
						|
        },
 | 
						|
        {
 | 
						|
          // Actions
 | 
						|
          targets: -1,
 | 
						|
          title: 'Actions',
 | 
						|
          orderable: false,
 | 
						|
          searchable: false,
 | 
						|
          render: function (data, type, full, meta) {
 | 
						|
            return (
 | 
						|
              '<div class="d-inline-block">' +
 | 
						|
              '<a href="javascript:;" class="btn btn-icon dropdown-toggle hide-arrow me-1" data-bs-toggle="dropdown"><i class="bx bx-dots-vertical-rounded bx-md"></i></a>' +
 | 
						|
              '<ul class="dropdown-menu dropdown-menu-end m-0">' +
 | 
						|
              '<li><a href="javascript:;" class="dropdown-item">Details</a></li>' +
 | 
						|
              '<li><a href="javascript:;" class="dropdown-item">Archive</a></li>' +
 | 
						|
              '<div class="dropdown-divider"></div>' +
 | 
						|
              '<li><a href="javascript:;" class="dropdown-item text-danger delete-record">Delete</a></li>' +
 | 
						|
              '</ul>' +
 | 
						|
              '</div>' +
 | 
						|
              '<a href="javascript:;" class="btn btn-icon item-edit"><i class="bx bx-edit bx-md"></i></a>'
 | 
						|
            );
 | 
						|
          }
 | 
						|
        }
 | 
						|
      ],
 | 
						|
      order: [[2, 'desc']],
 | 
						|
      dom: '<"card-header flex-column flex-md-row pb-0"<"head-label text-center"><"dt-action-buttons text-end pt-6 pt-md-0"B>><"row"<"col-sm-12 col-md-6"l><"col-sm-12 col-md-6 d-flex justify-content-center justify-content-md-end mt-n6 mt-md-0"f>>t<"row"<"col-sm-12 col-md-6"i><"col-sm-12 col-md-6"p>>',
 | 
						|
      displayLength: 7,
 | 
						|
      lengthMenu: [7, 10, 25, 50, 75, 100],
 | 
						|
      language: {
 | 
						|
        paginate: {
 | 
						|
          next: '<i class="bx bx-chevron-right bx-18px"></i>',
 | 
						|
          previous: '<i class="bx bx-chevron-left bx-18px"></i>'
 | 
						|
        }
 | 
						|
      },
 | 
						|
      buttons: [
 | 
						|
        {
 | 
						|
          extend: 'collection',
 | 
						|
          className: 'btn btn-label-primary dropdown-toggle me-4',
 | 
						|
          text: '<i class="bx bx-export bx-sm me-sm-2"></i> <span class="d-none d-sm-inline-block">Export</span>',
 | 
						|
          buttons: [
 | 
						|
            {
 | 
						|
              extend: 'print',
 | 
						|
              text: '<i class="bx bx-printer me-1" ></i>Print',
 | 
						|
              className: 'dropdown-item',
 | 
						|
              exportOptions: {
 | 
						|
                columns: [3, 4, 5, 6, 7],
 | 
						|
                // prevent avatar to be display
 | 
						|
                format: {
 | 
						|
                  body: function (inner, coldex, rowdex) {
 | 
						|
                    if (inner.length <= 0) return inner;
 | 
						|
                    var el = $.parseHTML(inner);
 | 
						|
                    var result = '';
 | 
						|
                    $.each(el, function (index, item) {
 | 
						|
                      if (item.classList !== undefined && item.classList.contains('user-name')) {
 | 
						|
                        result = result + item.lastChild.firstChild.textContent;
 | 
						|
                      } else if (item.innerText === undefined) {
 | 
						|
                        result = result + item.textContent;
 | 
						|
                      } else result = result + item.innerText;
 | 
						|
                    });
 | 
						|
                    return result;
 | 
						|
                  }
 | 
						|
                }
 | 
						|
              },
 | 
						|
              customize: function (win) {
 | 
						|
                //customize print view for dark
 | 
						|
                $(win.document.body)
 | 
						|
                  .css('color', config.colors.headingColor)
 | 
						|
                  .css('border-color', config.colors.borderColor)
 | 
						|
                  .css('background-color', config.colors.bodyBg);
 | 
						|
                $(win.document.body)
 | 
						|
                  .find('table')
 | 
						|
                  .addClass('compact')
 | 
						|
                  .css('color', 'inherit')
 | 
						|
                  .css('border-color', 'inherit')
 | 
						|
                  .css('background-color', 'inherit');
 | 
						|
              }
 | 
						|
            },
 | 
						|
            {
 | 
						|
              extend: 'csv',
 | 
						|
              text: '<i class="bx bx-file me-1" ></i>Csv',
 | 
						|
              className: 'dropdown-item',
 | 
						|
              exportOptions: {
 | 
						|
                columns: [3, 4, 5, 6, 7],
 | 
						|
                // prevent avatar to be display
 | 
						|
                format: {
 | 
						|
                  body: function (inner, coldex, rowdex) {
 | 
						|
                    if (inner.length <= 0) return inner;
 | 
						|
                    var el = $.parseHTML(inner);
 | 
						|
                    var result = '';
 | 
						|
                    $.each(el, function (index, item) {
 | 
						|
                      if (item.classList !== undefined && item.classList.contains('user-name')) {
 | 
						|
                        result = result + item.lastChild.firstChild.textContent;
 | 
						|
                      } else if (item.innerText === undefined) {
 | 
						|
                        result = result + item.textContent;
 | 
						|
                      } else result = result + item.innerText;
 | 
						|
                    });
 | 
						|
                    return result;
 | 
						|
                  }
 | 
						|
                }
 | 
						|
              }
 | 
						|
            },
 | 
						|
            {
 | 
						|
              extend: 'excel',
 | 
						|
              text: '<i class="bx bxs-file-export me-1"></i>Excel',
 | 
						|
              className: 'dropdown-item',
 | 
						|
              exportOptions: {
 | 
						|
                columns: [3, 4, 5, 6, 7],
 | 
						|
                // prevent avatar to be display
 | 
						|
                format: {
 | 
						|
                  body: function (inner, coldex, rowdex) {
 | 
						|
                    if (inner.length <= 0) return inner;
 | 
						|
                    var el = $.parseHTML(inner);
 | 
						|
                    var result = '';
 | 
						|
                    $.each(el, function (index, item) {
 | 
						|
                      if (item.classList !== undefined && item.classList.contains('user-name')) {
 | 
						|
                        result = result + item.lastChild.firstChild.textContent;
 | 
						|
                      } else if (item.innerText === undefined) {
 | 
						|
                        result = result + item.textContent;
 | 
						|
                      } else result = result + item.innerText;
 | 
						|
                    });
 | 
						|
                    return result;
 | 
						|
                  }
 | 
						|
                }
 | 
						|
              }
 | 
						|
            },
 | 
						|
            {
 | 
						|
              extend: 'pdf',
 | 
						|
              text: '<i class="bx bxs-file-pdf me-1"></i>Pdf',
 | 
						|
              className: 'dropdown-item',
 | 
						|
              exportOptions: {
 | 
						|
                columns: [3, 4, 5, 6, 7],
 | 
						|
                // prevent avatar to be display
 | 
						|
                format: {
 | 
						|
                  body: function (inner, coldex, rowdex) {
 | 
						|
                    if (inner.length <= 0) return inner;
 | 
						|
                    var el = $.parseHTML(inner);
 | 
						|
                    var result = '';
 | 
						|
                    $.each(el, function (index, item) {
 | 
						|
                      if (item.classList !== undefined && item.classList.contains('user-name')) {
 | 
						|
                        result = result + item.lastChild.firstChild.textContent;
 | 
						|
                      } else if (item.innerText === undefined) {
 | 
						|
                        result = result + item.textContent;
 | 
						|
                      } else result = result + item.innerText;
 | 
						|
                    });
 | 
						|
                    return result;
 | 
						|
                  }
 | 
						|
                }
 | 
						|
              }
 | 
						|
            },
 | 
						|
            {
 | 
						|
              extend: 'copy',
 | 
						|
              text: '<i class="bx bx-copy me-1" ></i>Copy',
 | 
						|
              className: 'dropdown-item',
 | 
						|
              exportOptions: {
 | 
						|
                columns: [3, 4, 5, 6, 7],
 | 
						|
                // prevent avatar to be display
 | 
						|
                format: {
 | 
						|
                  body: function (inner, coldex, rowdex) {
 | 
						|
                    if (inner.length <= 0) return inner;
 | 
						|
                    var el = $.parseHTML(inner);
 | 
						|
                    var result = '';
 | 
						|
                    $.each(el, function (index, item) {
 | 
						|
                      if (item.classList !== undefined && item.classList.contains('user-name')) {
 | 
						|
                        result = result + item.lastChild.firstChild.textContent;
 | 
						|
                      } else if (item.innerText === undefined) {
 | 
						|
                        result = result + item.textContent;
 | 
						|
                      } else result = result + item.innerText;
 | 
						|
                    });
 | 
						|
                    return result;
 | 
						|
                  }
 | 
						|
                }
 | 
						|
              }
 | 
						|
            }
 | 
						|
          ]
 | 
						|
        },
 | 
						|
        {
 | 
						|
          text: '<i class="bx bx-plus bx-sm me-sm-2"></i> <span class="d-none d-sm-inline-block">Add New Record</span>',
 | 
						|
          className: 'create-new btn btn-primary'
 | 
						|
        }
 | 
						|
      ],
 | 
						|
      responsive: {
 | 
						|
        details: {
 | 
						|
          display: $.fn.dataTable.Responsive.display.modal({
 | 
						|
            header: function (row) {
 | 
						|
              var data = row.data();
 | 
						|
              return 'Details of ' + data['full_name'];
 | 
						|
            }
 | 
						|
          }),
 | 
						|
          type: 'column',
 | 
						|
          renderer: function (api, rowIdx, columns) {
 | 
						|
            var data = $.map(columns, function (col, i) {
 | 
						|
              return col.title !== '' // ? Do not show row in modal popup if title is blank (for check box)
 | 
						|
                ? '<tr data-dt-row="' +
 | 
						|
                    col.rowIndex +
 | 
						|
                    '" data-dt-column="' +
 | 
						|
                    col.columnIndex +
 | 
						|
                    '">' +
 | 
						|
                    '<td>' +
 | 
						|
                    col.title +
 | 
						|
                    ':' +
 | 
						|
                    '</td> ' +
 | 
						|
                    '<td>' +
 | 
						|
                    col.data +
 | 
						|
                    '</td>' +
 | 
						|
                    '</tr>'
 | 
						|
                : '';
 | 
						|
            }).join('');
 | 
						|
 | 
						|
            return data ? $('<table class="table"/><tbody />').append(data) : false;
 | 
						|
          }
 | 
						|
        }
 | 
						|
      }
 | 
						|
    });
 | 
						|
    $('div.head-label').html('<h5 class="card-title mb-0">DataTable with Buttons</h5>');
 | 
						|
    // To remove default btn-secondary in export buttons
 | 
						|
    $('.dt-buttons > .btn-group > button').removeClass('btn-secondary');
 | 
						|
  }
 | 
						|
 | 
						|
  // Add New record
 | 
						|
  // ? Remove/Update this code as per your requirements
 | 
						|
  var count = 101;
 | 
						|
  // On form submit, if form is valid
 | 
						|
  fv.on('core.form.valid', function () {
 | 
						|
    var $new_name = $('.add-new-record .dt-full-name').val(),
 | 
						|
      $new_post = $('.add-new-record .dt-post').val(),
 | 
						|
      $new_email = $('.add-new-record .dt-email').val(),
 | 
						|
      $new_date = $('.add-new-record .dt-date').val(),
 | 
						|
      $new_salary = $('.add-new-record .dt-salary').val();
 | 
						|
 | 
						|
    if ($new_name != '') {
 | 
						|
      dt_basic.row
 | 
						|
        .add({
 | 
						|
          id: count,
 | 
						|
          full_name: $new_name,
 | 
						|
          post: $new_post,
 | 
						|
          email: $new_email,
 | 
						|
          start_date: $new_date,
 | 
						|
          salary: '$' + $new_salary,
 | 
						|
          status: 5
 | 
						|
        })
 | 
						|
        .draw();
 | 
						|
      count++;
 | 
						|
 | 
						|
      // Hide offcanvas using javascript method
 | 
						|
      offCanvasEl.hide();
 | 
						|
    }
 | 
						|
  });
 | 
						|
 | 
						|
  // Delete Record
 | 
						|
  $('.datatables-basic tbody').on('click', '.delete-record', function () {
 | 
						|
    dt_basic.row($(this).parents('tr')).remove().draw();
 | 
						|
  });
 | 
						|
 | 
						|
  // Complex Header DataTable
 | 
						|
  // --------------------------------------------------------------------
 | 
						|
 | 
						|
  if (dt_complex_header_table.length) {
 | 
						|
    var dt_complex = dt_complex_header_table.DataTable({
 | 
						|
      ajax: assetsPath + 'json/table-datatable.json',
 | 
						|
      columns: [
 | 
						|
        { data: 'full_name' },
 | 
						|
        { data: 'email' },
 | 
						|
        { data: 'city' },
 | 
						|
        { data: 'post' },
 | 
						|
        { data: 'salary' },
 | 
						|
        { data: 'status' },
 | 
						|
        { data: '' }
 | 
						|
      ],
 | 
						|
      columnDefs: [
 | 
						|
        {
 | 
						|
          // Label
 | 
						|
          targets: -2,
 | 
						|
          render: function (data, type, full, meta) {
 | 
						|
            var $status_number = full['status'];
 | 
						|
            var $status = {
 | 
						|
              1: { title: 'Current', class: 'bg-label-primary' },
 | 
						|
              2: { title: 'Professional', class: ' bg-label-success' },
 | 
						|
              3: { title: 'Rejected', class: ' bg-label-danger' },
 | 
						|
              4: { title: 'Resigned', class: ' bg-label-warning' },
 | 
						|
              5: { title: 'Applied', class: ' bg-label-info' }
 | 
						|
            };
 | 
						|
            if (typeof $status[$status_number] === 'undefined') {
 | 
						|
              return data;
 | 
						|
            }
 | 
						|
            return (
 | 
						|
              '<span class="badge ' + $status[$status_number].class + '">' + $status[$status_number].title + '</span>'
 | 
						|
            );
 | 
						|
          }
 | 
						|
        },
 | 
						|
        {
 | 
						|
          // Actions
 | 
						|
          targets: -1,
 | 
						|
          title: 'Actions',
 | 
						|
          orderable: false,
 | 
						|
          render: function (data, type, full, meta) {
 | 
						|
            return (
 | 
						|
              '<div class="d-inline-block">' +
 | 
						|
              '<a href="javascript:;" class="btn btn-icon dropdown-toggle hide-arrow me-1" data-bs-toggle="dropdown"><i class="bx bx-dots-vertical-rounded bx-md"></i></a>' +
 | 
						|
              '<div class="dropdown-menu dropdown-menu-end m-0">' +
 | 
						|
              '<a href="javascript:;" class="dropdown-item">Details</a>' +
 | 
						|
              '<a href="javascript:;" class="dropdown-item">Archive</a>' +
 | 
						|
              '<div class="dropdown-divider"></div>' +
 | 
						|
              '<a href="javascript:;" class="dropdown-item text-danger delete-record">Delete</a>' +
 | 
						|
              '</div>' +
 | 
						|
              '</div>' +
 | 
						|
              '<a href="javascript:;" class="btn btn-icon item-edit"><i class="bx bx-edit bx-md"></i></a>'
 | 
						|
            );
 | 
						|
          }
 | 
						|
        }
 | 
						|
      ],
 | 
						|
      dom: '<"row"<"col-sm-12 col-md-6"l><"col-sm-12 col-md-6 d-flex justify-content-center justify-content-md-end mt-n6 mt-md-0"f>><"table-responsive"t><"row"<"col-sm-12 col-md-6"i><"col-sm-12 col-md-6"p>>',
 | 
						|
      displayLength: 7,
 | 
						|
      lengthMenu: [7, 10, 25, 50, 75, 100],
 | 
						|
      language: {
 | 
						|
        paginate: {
 | 
						|
          next: '<i class="bx bx-chevron-right bx-18px"></i>',
 | 
						|
          previous: '<i class="bx bx-chevron-left bx-18px"></i>'
 | 
						|
        }
 | 
						|
      }
 | 
						|
    });
 | 
						|
  }
 | 
						|
 | 
						|
  // Row Grouping
 | 
						|
  // --------------------------------------------------------------------
 | 
						|
 | 
						|
  var groupColumn = 2;
 | 
						|
  if (dt_row_grouping_table.length) {
 | 
						|
    var groupingTable = dt_row_grouping_table.DataTable({
 | 
						|
      ajax: assetsPath + 'json/table-datatable.json',
 | 
						|
      columns: [
 | 
						|
        { data: '' },
 | 
						|
        { data: 'full_name' },
 | 
						|
        { data: 'post' },
 | 
						|
        { data: 'email' },
 | 
						|
        { data: 'city' },
 | 
						|
        { data: 'start_date' },
 | 
						|
        { data: 'salary' },
 | 
						|
        { data: 'status' },
 | 
						|
        { data: '' }
 | 
						|
      ],
 | 
						|
      columnDefs: [
 | 
						|
        {
 | 
						|
          // For Responsive
 | 
						|
          className: 'control',
 | 
						|
          orderable: false,
 | 
						|
          targets: 0,
 | 
						|
          searchable: false,
 | 
						|
          render: function (data, type, full, meta) {
 | 
						|
            return '';
 | 
						|
          }
 | 
						|
        },
 | 
						|
        { visible: false, targets: groupColumn },
 | 
						|
        {
 | 
						|
          // Label
 | 
						|
          targets: -2,
 | 
						|
          render: function (data, type, full, meta) {
 | 
						|
            var $status_number = full['status'];
 | 
						|
            var $status = {
 | 
						|
              1: { title: 'Current', class: 'bg-label-primary' },
 | 
						|
              2: { title: 'Professional', class: ' bg-label-success' },
 | 
						|
              3: { title: 'Rejected', class: ' bg-label-danger' },
 | 
						|
              4: { title: 'Resigned', class: ' bg-label-warning' },
 | 
						|
              5: { title: 'Applied', class: ' bg-label-info' }
 | 
						|
            };
 | 
						|
            if (typeof $status[$status_number] === 'undefined') {
 | 
						|
              return data;
 | 
						|
            }
 | 
						|
            return (
 | 
						|
              '<span class="badge ' + $status[$status_number].class + '">' + $status[$status_number].title + '</span>'
 | 
						|
            );
 | 
						|
          }
 | 
						|
        },
 | 
						|
        {
 | 
						|
          // Actions
 | 
						|
          targets: -1,
 | 
						|
          title: 'Actions',
 | 
						|
          orderable: false,
 | 
						|
          searchable: false,
 | 
						|
          render: function (data, type, full, meta) {
 | 
						|
            return (
 | 
						|
              '<div class="d-inline-block">' +
 | 
						|
              '<a href="javascript:;" class="btn btn-icon dropdown-toggle hide-arrow me-1" data-bs-toggle="dropdown"><i class="bx bx-dots-vertical-rounded bx-sm"></i></a>' +
 | 
						|
              '<div class="dropdown-menu dropdown-menu-end m-0">' +
 | 
						|
              '<a href="javascript:;" class="dropdown-item">Details</a>' +
 | 
						|
              '<a href="javascript:;" class="dropdown-item">Archive</a>' +
 | 
						|
              '<div class="dropdown-divider"></div>' +
 | 
						|
              '<a href="javascript:;" class="dropdown-item text-danger delete-record">Delete</a>' +
 | 
						|
              '</div>' +
 | 
						|
              '</div>' +
 | 
						|
              '<a href="javascript:;" class="btn btn-icon item-edit"><i class="bx bx-edit bx-sm"></i></a>'
 | 
						|
            );
 | 
						|
          }
 | 
						|
        }
 | 
						|
      ],
 | 
						|
      order: [[groupColumn, 'asc']],
 | 
						|
      dom: '<"row"<"col-sm-12 col-md-6"l><"col-sm-12 col-md-6 d-flex justify-content-center justify-content-md-end mt-n6 mt-md-0"f>>t<"row"<"col-sm-12 col-md-6"i><"col-sm-12 col-md-6"p>>',
 | 
						|
      displayLength: 7,
 | 
						|
      lengthMenu: [7, 10, 25, 50, 75, 100],
 | 
						|
      language: {
 | 
						|
        paginate: {
 | 
						|
          next: '<i class="bx bx-chevron-right bx-18px"></i>',
 | 
						|
          previous: '<i class="bx bx-chevron-left bx-18px"></i>'
 | 
						|
        }
 | 
						|
      },
 | 
						|
      drawCallback: function (settings) {
 | 
						|
        var api = this.api();
 | 
						|
        var rows = api.rows({ page: 'current' }).nodes();
 | 
						|
        var last = null;
 | 
						|
 | 
						|
        api
 | 
						|
          .column(groupColumn, { page: 'current' })
 | 
						|
          .data()
 | 
						|
          .each(function (group, i) {
 | 
						|
            if (last !== group) {
 | 
						|
              $(rows)
 | 
						|
                .eq(i)
 | 
						|
                .before('<tr class="group"><td colspan="8">' + group + '</td></tr>');
 | 
						|
 | 
						|
              last = group;
 | 
						|
            }
 | 
						|
          });
 | 
						|
      },
 | 
						|
      responsive: {
 | 
						|
        details: {
 | 
						|
          display: $.fn.dataTable.Responsive.display.modal({
 | 
						|
            header: function (row) {
 | 
						|
              var data = row.data();
 | 
						|
              return 'Details of ' + data['full_name'];
 | 
						|
            }
 | 
						|
          }),
 | 
						|
          type: 'column',
 | 
						|
          renderer: function (api, rowIdx, columns) {
 | 
						|
            var data = $.map(columns, function (col, i) {
 | 
						|
              return col.title !== '' // ? Do not show row in modal popup if title is blank (for check box)
 | 
						|
                ? '<tr data-dt-row="' +
 | 
						|
                    col.rowIndex +
 | 
						|
                    '" data-dt-column="' +
 | 
						|
                    col.columnIndex +
 | 
						|
                    '">' +
 | 
						|
                    '<td>' +
 | 
						|
                    col.title +
 | 
						|
                    ':' +
 | 
						|
                    '</td> ' +
 | 
						|
                    '<td>' +
 | 
						|
                    col.data +
 | 
						|
                    '</td>' +
 | 
						|
                    '</tr>'
 | 
						|
                : '';
 | 
						|
            }).join('');
 | 
						|
 | 
						|
            return data ? $('<table class="table"/><tbody />').append(data) : false;
 | 
						|
          }
 | 
						|
        }
 | 
						|
      }
 | 
						|
    });
 | 
						|
 | 
						|
    // Order by the grouping
 | 
						|
    $('.dt-row-grouping tbody').on('click', 'tr.group', function () {
 | 
						|
      var currentOrder = groupingTable.order()[0];
 | 
						|
      if (currentOrder[0] === groupColumn && currentOrder[1] === 'asc') {
 | 
						|
        groupingTable.order([groupColumn, 'desc']).draw();
 | 
						|
      } else {
 | 
						|
        groupingTable.order([groupColumn, 'asc']).draw();
 | 
						|
      }
 | 
						|
    });
 | 
						|
  }
 | 
						|
 | 
						|
  // Multilingual DataTable
 | 
						|
  // --------------------------------------------------------------------
 | 
						|
 | 
						|
  var lang = 'German';
 | 
						|
  if (dt_multilingual_table.length) {
 | 
						|
    var table_language = dt_multilingual_table.DataTable({
 | 
						|
      ajax: assetsPath + 'json/table-datatable.json',
 | 
						|
      columns: [
 | 
						|
        { data: '' },
 | 
						|
        { data: 'full_name' },
 | 
						|
        { data: 'post' },
 | 
						|
        { data: 'email' },
 | 
						|
        { data: 'start_date' },
 | 
						|
        { data: 'salary' },
 | 
						|
        { data: 'status' },
 | 
						|
        { data: '' }
 | 
						|
      ],
 | 
						|
      columnDefs: [
 | 
						|
        {
 | 
						|
          // For Responsive
 | 
						|
          className: 'control',
 | 
						|
          orderable: false,
 | 
						|
          targets: 0,
 | 
						|
          searchable: false,
 | 
						|
          render: function (data, type, full, meta) {
 | 
						|
            return '';
 | 
						|
          }
 | 
						|
        },
 | 
						|
        {
 | 
						|
          // Label
 | 
						|
          targets: -2,
 | 
						|
          render: function (data, type, full, meta) {
 | 
						|
            var $status_number = full['status'];
 | 
						|
            var $status = {
 | 
						|
              1: { title: 'Current', class: 'bg-label-primary' },
 | 
						|
              2: { title: 'Professional', class: ' bg-label-success' },
 | 
						|
              3: { title: 'Rejected', class: ' bg-label-danger' },
 | 
						|
              4: { title: 'Resigned', class: ' bg-label-warning' },
 | 
						|
              5: { title: 'Applied', class: ' bg-label-info' }
 | 
						|
            };
 | 
						|
            if (typeof $status[$status_number] === 'undefined') {
 | 
						|
              return data;
 | 
						|
            }
 | 
						|
            return (
 | 
						|
              '<span class="badge ' + $status[$status_number].class + '">' + $status[$status_number].title + '</span>'
 | 
						|
            );
 | 
						|
          }
 | 
						|
        },
 | 
						|
        {
 | 
						|
          // Actions
 | 
						|
          targets: -1,
 | 
						|
          title: 'Actions',
 | 
						|
          orderable: false,
 | 
						|
          searchable: false,
 | 
						|
          render: function (data, type, full, meta) {
 | 
						|
            return (
 | 
						|
              '<div class="d-inline-block">' +
 | 
						|
              '<a href="javascript:;" class="btn btn-icon dropdown-toggle hide-arrow me-1" data-bs-toggle="dropdown"><i class="bx bx-dots-vertical-rounded bx-sm"></i></a>' +
 | 
						|
              '<div class="dropdown-menu dropdown-menu-end m-0">' +
 | 
						|
              '<a href="javascript:;" class="dropdown-item">Details</a>' +
 | 
						|
              '<a href="javascript:;" class="dropdown-item">Archive</a>' +
 | 
						|
              '<div class="dropdown-divider"></div>' +
 | 
						|
              '<a href="javascript:;" class="dropdown-item text-danger delete-record">Delete</a>' +
 | 
						|
              '</div>' +
 | 
						|
              '</div>' +
 | 
						|
              '<a href="javascript:;" class="btn btn-icon item-edit"><i class="bx bx-edit bx-sm"></i></a>'
 | 
						|
            );
 | 
						|
          }
 | 
						|
        }
 | 
						|
      ],
 | 
						|
      language: {
 | 
						|
        url: '//cdn.datatables.net/plug-ins/9dcbecd42ad/i18n/' + lang + '.json',
 | 
						|
        paginate: {
 | 
						|
          next: '<i class="bx bx-chevron-right bx-18px"></i>',
 | 
						|
          previous: '<i class="bx bx-chevron-left bx-18px"></i>'
 | 
						|
        }
 | 
						|
      },
 | 
						|
      order: [[2, 'desc']],
 | 
						|
      displayLength: 7,
 | 
						|
      dom: '<"row"<"col-sm-12 col-md-6 ps-md-4"l><"col-sm-12 col-md-6 d-flex justify-content-center justify-content-md-end mt-n6 mt-md-0"f>>t<"row"<"col-sm-12 col-md-6"i><"col-sm-12 col-md-6"p>>',
 | 
						|
      lengthMenu: [7, 10, 25, 50, 75, 100],
 | 
						|
      responsive: {
 | 
						|
        details: {
 | 
						|
          display: $.fn.dataTable.Responsive.display.modal({
 | 
						|
            header: function (row) {
 | 
						|
              var data = row.data();
 | 
						|
              return 'Details of ' + data['full_name'];
 | 
						|
            }
 | 
						|
          }),
 | 
						|
          type: 'column',
 | 
						|
          renderer: function (api, rowIdx, columns) {
 | 
						|
            var data = $.map(columns, function (col, i) {
 | 
						|
              return col.title !== '' // ? Do not show row in modal popup if title is blank (for check box)
 | 
						|
                ? '<tr data-dt-row="' +
 | 
						|
                    col.rowIndex +
 | 
						|
                    '" data-dt-column="' +
 | 
						|
                    col.columnIndex +
 | 
						|
                    '">' +
 | 
						|
                    '<td>' +
 | 
						|
                    col.title +
 | 
						|
                    ':' +
 | 
						|
                    '</td> ' +
 | 
						|
                    '<td>' +
 | 
						|
                    col.data +
 | 
						|
                    '</td>' +
 | 
						|
                    '</tr>'
 | 
						|
                : '';
 | 
						|
            }).join('');
 | 
						|
 | 
						|
            return data ? $('<table class="table"/><tbody />').append(data) : false;
 | 
						|
          }
 | 
						|
        }
 | 
						|
      }
 | 
						|
    });
 | 
						|
  }
 | 
						|
 | 
						|
  // Filter form control to default size
 | 
						|
  // ? setTimeout used for multilingual table initialization
 | 
						|
  setTimeout(() => {
 | 
						|
    $('.dataTables_filter .form-control').removeClass('form-control-sm');
 | 
						|
    $('.dataTables_length .form-select').removeClass('form-select-sm');
 | 
						|
  }, 300);
 | 
						|
});
 |