How to Server side DataTables with Ignited-Datatables Library?
My application use CodeIgniter.
Library that I use is Ignited-datatables Library.
My controll
There is error in your Code.
public function get_team()
{
$this->load->library('Datatables');
$this->datatables->select('*')
->unset_column('id')
->from('oric_team');
echo $this->datatables->generate('json', '');
}
You are missing the Semi Colon before echo. I am using your code and everything is working fine after putting semi colon.