Comments on: DataTables Server-side Processing with CodeIgniter https://www.codexworld.com/codeigniter-datatables-server-side-processing/ Web & Mobile App Development Company Tue, 02 Jan 2024 07:22:18 +0000 hourly 1 By: Sangita Kumbhar https://www.codexworld.com/codeigniter-datatables-server-side-processing/comment-page-1/#comment-244344 Tue, 02 Jan 2024 07:22:18 +0000 https://www.codexworld.com/?p=3609#comment-244344 How to do inline edit in this example and save the data to database

]]>
By: Maksudi Indra https://www.codexworld.com/codeigniter-datatables-server-side-processing/comment-page-1/#comment-227689 Mon, 06 Feb 2023 08:04:02 +0000 https://www.codexworld.com/?p=3609#comment-227689 How to change default order to be multiple order in your model ?

]]>
By: Bahareh https://www.codexworld.com/codeigniter-datatables-server-side-processing/comment-page-1/#comment-116544 Tue, 23 Jun 2020 12:14:26 +0000 https://www.codexworld.com/?p=3609#comment-116544 Excellent.
thanks a lot.

]]>
By: tom https://www.codexworld.com/codeigniter-datatables-server-side-processing/comment-page-1/#comment-114842 Mon, 01 Jun 2020 16:34:26 +0000 https://www.codexworld.com/?p=3609#comment-114842 I appreciate your efforts. thanks, I am learning how to make it with CI4

]]>
By: somnath maity https://www.codexworld.com/codeigniter-datatables-server-side-processing/comment-page-1/#comment-85050 Thu, 09 May 2019 08:05:51 +0000 https://www.codexworld.com/?p=3609#comment-85050 hello sir, When i joined many table by main table id ..how can i search the another table name

]]>
By: Ramon Henry https://www.codexworld.com/codeigniter-datatables-server-side-processing/comment-page-1/#comment-82672 Thu, 11 Apr 2019 15:32:28 +0000 https://www.codexworld.com/?p=3609#comment-82672 This is how I usually do my join statements hopes this helps:

$this->db->select(‘*’);
$this->db->where(‘location’, $id);
$this->db->where(‘priority’, $priority);
$this->db->join(‘locations’, ‘tickets.location = locations.id’, ‘inner’);
$this->data[‘tickets’] = $this->support_m->get();

]]>
By: Brylle https://www.codexworld.com/codeigniter-datatables-server-side-processing/comment-page-1/#comment-79390 Tue, 05 Mar 2019 02:43:19 +0000 https://www.codexworld.com/?p=3609#comment-79390 Nice tutorial codexworld :), can you also provide with join sample and search functionality of it 🙂

eg.
users_table
gadgets_table

Name Gender Gadgets
John M phone, laptop, drone

]]>