HTML_Table::HTML_Table -- Constructor
Paraméterek
array $attributes -
Associative array of table tag attributes
integer $tabOffset -
Tab offset of the table
boolean $useTGroups -
Whether to use the thead, tfoot and tbody groups or not
Megjegyzés
Ez a függvény nem hívható
statikusan.
|
FAQ (Previous)
|
(Next) HTML_Table::addBody
|
|
|
Download Documentation
|
Last updated: Sun, 01 Jul 2007 |
|
Do you think that something on this page is wrong? Please file a bug report or add a note.
|
| User Notes: |
After creating the table you can still change attributes. HTML_Table extends HTML_Common which provides methods like setAttribute('attname', 'attavalue');
The attributes parameter takes an array of actual html table tag attributes, e.g.
$table = new HTML_Table(array('border' => '1', 'class' => 'cssclass'));
|
|