Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 388 Bytes

README.md

File metadata and controls

15 lines (9 loc) · 388 Bytes

What is this?

JQuery datatables.net implementation in CodeIgniter.

Where'd it come from?

http://codeigniter.com/forums/viewthread/164729/ (the patch by zoko2902 is included)

How do you use it?

$columns = array('id','name', 'description');
$joins = 'LEFT JOIN ...';
$search = 'description';

echo $this->datatables->generate('table',$columns,'id', $joins, $where, $search);