This error occurs in protected/extensions/yiiwheels/widgets/grid/WhGridView.php line 242, and I have commented a portion out for the time being (although that is not the solution I admit)
....
public function renderTableRow($row)
{
$htmlOptions = array();
/*
if ($this->rowHtmlOptionsExpression !== null) {
$data = $this->dataProvider->data[$row];
$options = $this->evaluateExpression(
$this->rowHtmlOptionsExpression,
array('row' => $row, 'data' => $data)
);
if (is_array($options)) {
$htmlOptions = $options;
}
}
*/
....