Looking at the docs for $html->tableCells the call is expecting all of
the table rows in one call. (How else could it keep up with alternate
row counts?) From the manual:
echo $html->tableCells(array(
array('Jul 7th, 2007', 'Best Brownies', 'Yes'), // row 1
array('Jun 21st, 2007', 'Smart Cookies', 'Yes'), // row 2
array('Aug 1st, 2006', 'Anti-Java Cake', 'No'), // row 3
));
For your array something like this should work:
<table>
<?=
echo $html->tableCells($autors, array ('bgcolor'=>'#FFCC99'));
?>
</table>
On Jun 18, 11:28 am, "[email protected]" <[email protected]>
wrote:
> Hi, new at cakephp, so I'm trying with some tutorials, but using
> tablecells doesn't work with bgcolor, I get the table with rows and
> data but all rows are white, I mean odds and even rows are in same
> color, what I'm doing wrong?
>
> <table>
> <?php foreach($autors as $row) {
> echo $html->tableCells( array ( $row['Autor']['id'],
> $row['Autor']['nombre'],
> $row['Autor']['apellido'],
> $row['Autor']['fecha_nacimiento'],
> $row['Autor']['fecha_defuncion'] ) ,
>
> array ('bgcolor'=>'#FFCC99'));}
> ?>
> </table>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---