Asgaroth, on 13 November 2012 - 10:26 AM, said:
Probably, I do something wrong.
The last tab should render partial view, but it doesn't do anything.
<?php
$this -> widget("foundation.widgets.FounTabs",
array('items' => array(
array('label' => 'User', 'content' => $model->use_description),
array( 'label' => 'Reviews',
'view'=>'_addreview2'),
//'view'=>'products/_addreview2'),
//'view'=>'front/products/_addreview2'),
),
'type' => 'contained',
));
?>
This code is render by ProductsController View action.
So the view is in view/products folder (view.php).
In the same folder there is also code that should be render as partial view (view/products/_addreview2).
I have backend and frontend in seperate folders, so I also tried to use '/front/products/_addreview2').

Help













