Вручную установите заголовки и столбцы, вставляя в последний столбец все, что вам нужно, вот так ...
$this->table->set_heading('Heading One', 'Heading Two', ... , 'Links'); //set your headings
foreach($data_rows as $row) { //set your rows here
// first build links for this row assuming you need the urls to
// look like 'http://domain/index.php/controller/{action}/{id}
$links = anchor('controller/edit/'.$row->id ,'Edit');
$links .= anchor('controller/delete/'.$row->id , 'Delete');
$this->table->add_row(
$row->heading_one,
$row->heading_two,
...,
$links, //add the links you created to the last row, corresponding to your 'Links' Header
);
}
echo $this->table->generate();