Welcome Guest, Not a member yet? Register   Sign In
How to add attributes to table rows?
#2

(This post was last modified: 03-01-2016, 03:34 AM by keulu.)

i don't know if you can do it with add_row()

PHP Code:
$cell = array('data' => 'Blue''class' => 'highlight''colspan' => 2);
$this->table->add_row($cell'Red''Green'); 

this is for a cell, but try that

PHP Code:
$cell = array('data' => array('Red''Green''Blue'), 'class' => 'highlight');
$this->table->add_row($cell); 

maybe that work but personnaly, i don't use this lib.
Reply


Messages In This Thread
How to add attributes to table rows? - by eldan88 - 03-01-2016, 12:04 AM
RE: How to add attributes to table rows? - by keulu - 03-01-2016, 02:58 AM



Theme © iAndrew 2016 - Forum software by © MyBB