ie. some thing like this
public function actionIndex()
{
//load js file here
$this->render('index');
}requirement is to load js file in a new page
Posted 16 November 2012 - 12:03 AM
public function actionIndex()
{
//load js file here
$this->render('index');
}
Posted 16 November 2012 - 12:26 AM
Posted 16 November 2012 - 12:59 AM
public function actionIndex()
{
Yii::app()->clientScript->registerScriptFile('scripts/myfile.js',CClientScript::POS_END);
$this->render('index');
}