R is undefined

R is undefined

xtremer360xtremer360 Posts: 84Questions: 2Answers: 0
edited October 2012 in General
I'm trying to understand why I"m getting the following error with my table: TypeError: r is undefined ...eatedCell.call(a.oInstance,r,x(a,b,h,"display"),d._aData,b,h)}}if(0!==a.aoRowCre...

I'm currently using version 1.9.3.

Any thoughts?

[code]






From
Subject

Date



<?php
foreach ($personal_messages AS $message)
{
?>




<?php echo $message->first_name.' '.$message->last_name; ?><?php echo $message->email_address ?>



<?php echo $message->subject; ?> - <?php echo substr ($message->message_content, 0, 40).'...'; ?>


<?php
if ($message->attachments !== NULL)
{
?>



<?php
}
?>

<?php echo $this->functions_model->actual_time('g:i a', $geo_data['zipz']['timezone'], strtotime($message->datetime_sent)); ?>

<?php
}
?>



[/code]

Replies

  • xtremer360xtremer360 Posts: 84Questions: 2Answers: 0
    Any ideas?
  • allanallan Posts: 63,286Questions: 1Answers: 10,425 Site admin
    > Any thoughts?

    Yes - use the unminified version to have a chance of understanding the error! Trying to debug the minified version will get you no where fast!

    Allan
  • xtremer360xtremer360 Posts: 84Questions: 2Answers: 0
    I still have no idea.
  • xtremer360xtremer360 Posts: 84Questions: 2Answers: 0
    Okay it says nCell is undefined here.

    if ( bClass )
    {
    nCell.className += ' '+oCol.sClass;
    }

    Which is what's on line 643.
This discussion has been closed.