CodeIgniter Forums
Table Template - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: Table Template (/showthread.php?tid=14587)



Table Template - El Forum - 01-08-2009

[eluser]Unknown[/eluser]
i'm newcomer for the CI framework...and i want to build my system using it...i hv some problem in the html table user guide...can anyone give some full example of the table template...from the below table template, i didnt understand how to use the table template...im very pleased if someone can xplain and give full exampleof the table template

Quote:$tmpl = array (
'table_open' => '<table border="0" cellpadding="4" cellspacing="0">',

'heading_row_start' => '<tr>',
'heading_row_end' => '</tr>',
'heading_cell_start' => '<th>',
'heading_cell_end' => '</th>',

'row_start' => '<tr>',
'row_end' => '</tr>',
'cell_start' => '<td>',
'cell_end' => '</td>',

'row_alt_start' => '<tr>',
'row_alt_end' => '</tr>',
'cell_alt_start' => '<td>',
'cell_alt_end' => '</td>',

'table_close' => '</table>'
);

$this->table->set_template($tmpl);