Hi,
I have this action below at miembros/actions/actions.class.php:
public function executeFoo(sfWebRequest $request){
return $this->renderPartial('foo');
}
and in miembros/templates i have _foo.php
When i execute it, the css files i have at frontend/config/view.yml are not loaded. I have also tried using in _foo.php:
<?php use_stylesheet('my_css_file.css') ?>
but it doesn't work either...
No problem if the action is empty and i have a pruebaSuccess.php file.
Any idea?
Javi