I'm new to Yii and try to write a widget. It is a complex one and include an "Actions", that should render a View inside this widget.
I used to $this->renderPartial(); inside the Action, but it throw error.
My widget class shortened constuction is
class CCProductFilters extends CWidget {
...
public static function actions() {
return array(
'CutShapeSelected' => 'application.components.rigthSidebar.widget.actions.contactFormSubmitted'
);
}
...
}