diff --git a/app/Controllers/ThzController.php b/app/Controllers/ThzController.php index 8a61a1cc..070b01ab 100644 --- a/app/Controllers/ThzController.php +++ b/app/Controllers/ThzController.php @@ -137,8 +137,6 @@ class ThzController extends BaseController public function ticketList() { - $data['tab_name'] = "Tickets"; - $data['page_name'] = "Tickets"; try { $returnType = strtolower($this->request->getGet('return_type') ?? 'api'); @@ -166,7 +164,8 @@ class ThzController extends BaseController // 3,4 remain person varannum. $data['client_list'] = $this->clientModel->getCreatedByUserName(); $data['ticket_type'] = $this->thzTypeModel->where('is_active', 1)->findAll(); - + $data['tab_name'] = "Tickets"; + $data['page_name'] = "Tickets"; return $this->loadLayout('thz_list', $data); } @@ -361,6 +360,9 @@ class ThzController extends BaseController $result['policy_terms'] = $toGetPolicyId ? $this->getPolicyTerms($toGetPolicyId) : ''; $result['ticket_type'] = $this->thzTypeModel->where('is_active', 1)->findAll(); + + $result['tab_name'] = "Tickets"; + $result['page_name'] = "Tickets"; return $this->loadLayout('thz_notes', $result); } diff --git a/app/Views/UserList.php b/app/Views/UserList.php index 749747ae..716db9a3 100755 --- a/app/Views/UserList.php +++ b/app/Views/UserList.php @@ -886,7 +886,7 @@ table.dataTable tbody td { } ], paging: true, - pageLength: 25, + pageLength: 10, language: { search: `
| S.No | @@ -62,6 +63,7 @@ + diff --git a/app/Views/endorsement_list.php b/app/Views/endorsement_list.php index de7d908b..cacfab96 100755 --- a/app/Views/endorsement_list.php +++ b/app/Views/endorsement_list.php @@ -598,7 +598,7 @@ "<'row'<'col-sm-12'tr>>" + "<'row'<'col-sm-5'i><'col-sm-7'p>>", buttons: [{ - text: ' Create New Ticket ', + text: ' Add ', className: 'btn app-btn-primary mr-2', action: function(e, dt, node, config) { openTicket(); diff --git a/app/Views/finance_team_list.php b/app/Views/finance_team_list.php index 2c978329..0ec2aed9 100644 --- a/app/Views/finance_team_list.php +++ b/app/Views/finance_team_list.php @@ -393,7 +393,7 @@ $(document).ready(function () { searchPlaceholder: "Search" }, paging: true, - pageLength: 25, + pageLength: 10, ordering: false }); } else { diff --git a/app/Views/hr_activity_history.php b/app/Views/hr_activity_history.php index 260f0a41..8f52d592 100644 --- a/app/Views/hr_activity_history.php +++ b/app/Views/hr_activity_history.php @@ -106,7 +106,7 @@ $(document).ready(function () { searchPlaceholder: "Search..." }, paging: true, - pageLength: 25, + pageLength: 10, ordering: false, buttons: [ { diff --git a/app/Views/hr_file_upload.php b/app/Views/hr_file_upload.php index 76bbdc73..dd0c7b33 100644 --- a/app/Views/hr_file_upload.php +++ b/app/Views/hr_file_upload.php @@ -356,11 +356,7 @@ // for datatable $(document).ready(function() { $('#hr_tickets_table').DataTable({ -<<<<<<< HEAD dom: "<'row'<'col-12 d-flex justify-content-between align-items-center'<'datatable-search dataTables_filter'f><'datatable-buttons dt-buttons'B>>>" + -======= - dom: "<'row'<'col-sm-1'f><'col-sm-11 text-right'B>>" + ->>>>>>> 3e7d3426 (FIX_XL button and Search) "<'row'<'col-sm-12'tr>>" + "<'row'<'col-sm-5'i><'col-sm-7'p>>", buttons: [{ diff --git a/app/Views/insurer_list.php b/app/Views/insurer_list.php index 9bb6624b..59727f76 100755 --- a/app/Views/insurer_list.php +++ b/app/Views/insurer_list.php @@ -217,23 +217,8 @@ `, searchPlaceholder: "Search" ->>>>>>> 3e7d3426 (FIX_XL button and Search) }, - { - text: 'ADD', - className: 'btn btn-color', - action: function() { - window.location.href = "= base_url("master/insurer/create"); ?>"; - } - } - ], - - - language: { - search: "_INPUT_", - searchPlaceholder: "Search..." - }, - paging: true, + paging: true, }); }) diff --git a/app/Views/layout/header.php b/app/Views/layout/header.php index 34a3eb29..9e2269cb 100755 --- a/app/Views/layout/header.php +++ b/app/Views/layout/header.php @@ -140,10 +140,6 @@ min-height: 100vh !important; } - body[data-sidebar-size=condensed] .left-side-menu #sidebar-menu>ul>li>a i{ - margin :0 px !important; - } - body .content-page { margin-top: 90px !important; } @@ -271,7 +267,7 @@ padding: 0 !important; height: 90% !important; display: flex; - flex-flow: column nowrap; + flex-flow: column wrap; } /* every
|---|