Is it possible to assign Events to a Component in the same way as Actions are assigned to Controllers?
public function actions()
{
return array(
'edit'=>'application.controllers.EditAction',
);
}
Posted 12 October 2008 - 05:32 AM
public function actions()
{
return array(
'edit'=>'application.controllers.EditAction',
);
}
Posted 12 October 2008 - 06:20 AM
Posted 12 October 2008 - 08:37 AM
public function events()
{
return array{
'click'=>'application.components.events.ClickEvent',
};
}
Posted 12 October 2008 - 08:42 AM