Welcome Guest, Not a member yet? Register   Sign In
Pagination for CMS
#4

[eluser]w0bbes[/eluser]
Hey!

Im not sure how pagination would handle this but the problem with the table class and adding a edit/delete cell i solved in the following way by just adding the cells "manually".. (excuse the dutch)

Code:
$this->table->set_heading('Titel','Inhoud','Opties');
    
     $tmpl = array(
             'row_alt_start'        => '<tr style="background-color: #eee">'
     );
    
     foreach($overzicht->result() as $row ){
        
         $this->table->add_row($row->titel,$row->inhoud,'<a href="/edit/$id">bewerken</a> <a href="/delete/$id">verwijderen</a>');
        
     }
    $this->table->set_template($tmpl);
    echo $this->table->generate();

replace the $id with your db id


Messages In This Thread
Pagination for CMS - by El Forum - 10-15-2009, 07:48 AM
Pagination for CMS - by El Forum - 10-15-2009, 08:39 AM
Pagination for CMS - by El Forum - 10-15-2009, 09:31 AM
Pagination for CMS - by El Forum - 11-14-2009, 07:53 PM



Theme © iAndrew 2016 - Forum software by © MyBB