SalFay / CodeIgniter-DataTables

Nice & Easy way to Integrate DataTables in CodeIgniter. Support CI Database Query builder
Apache License 2.0
8 stars 2 forks source link
codeigniter codeigniter-library codeigniter3 datatables

Data Tables Library for CodeIgniter v1.0 - Alpha

Sample Usage

To understand how to use this library and get full benefits of it, Follow the step by step process below

Download the Library

Installing Library

Sample Data

Create Controller

class Company extends CI_Controller{
    public function employees_ajax(){
        echo '{}';
    }

    public function employees(){
        $this->load->view('employees');
    }

    public function departments_ajax(){
        echo '{}';
    }

    public function departments(){
        $this->load->view('departments');
    }
}

Create View