[development] some secret to using theme('table'...) ?

Blake Senftner bsenftner at earthlink.net
Fri Oct 29 01:14:04 UTC 2010


Hmmm... I have the following logic in a module's hook_view() creating a table out of programmatically generated information:

  $header =  array(t($node->title), t('Values:'));
  $rows = array(array('<strong>Project status:</strong>', $statusMarkup), 
                array('<strong>Notes:</strong>',          $node->content['body']['#value']),
                array('<strong>Images:</strong>',         $imagesMarkup),
                array('<strong>Image Tags:</strong>',     $imageTagMarkup),
                array('<strong>Reconstructions:</strong>',$reconsMarkup),
                array('<strong>Actions:</strong>',        $actionsMarkup));
  $table = theme('table', $header, $rows, array('style' => 'width: 770px', 'class' => 'form-item'));
  $node->content['body']['#value'] = $table;

Notice that portion where I declare the width of the table to only be 770px? That is being ignored... I've tried variations like:

array( 'width' => '770px', ...) [note not 'style' here] and array( 'style' => 'width: 77px;', ...) [note added semicolon here]

When I don't use the 'style' attribute, the sticky-header gets a style setting with the width set to '877.617px;', so it looks like the 'style' usage is what I need, but I'm not finding the magic combination...

any advice? 

Sincerely,
-Blake

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.drupal.org/pipermail/development/attachments/20101028/451beccc/attachment.html 


More information about the development mailing list