How to include Javascript or CSS file in Yii Framework.
I want to create a page on my site that has a little javascript application running,so i want to include .js and css files in a specific view..
|
How to include Javascript or CSS file in Yii Framework. I want to create a page on my site that has a little javascript application running,so i want to include .js and css files in a specific view.. |
|||
|
|
|
Something like this:
|
|||||||||||||||
|
|
You can do so by adding
|
||||
|
|
|
I liked to answer this question. Their are many places where we have css & javascript files, like in css folder which is outside the protected folder, css & js files of extension & widgets which we need to include externally sometime when use ajax a lot, js & css files of core framework which also we need to include externally sometime. So their are some ways to do this. Include core js files of framework like jquery.js, jquery.ui.js
Include files from css folder outside of protected folder.
Include css & js files from extension or widgets. Here fancybox is an extension which is placed under protected folder. Files we including has path : /protected/extensions/fancybox/assets/
Also we can include core framework files: Example : I am including CListView js file.
For more detail Look at my blog article |
||||
|
|
|
Easy in your conf/main.php. This is my example with bootstrap. You can see that in https://github.com/jknito/kTemplate/blob/master/protected/config/main.php
|
|||
|
|
|
Also, if you want to add module assets both CSS and JS, you can use the following logic. See how you need to indicate the correct path to getPathOfAlias:
The above code has been taken from GPLed Yii based Webshop app. |
|||
|
|
|
In the view, add the following:
Please notice the second parameter when you register the js file, it's the position of your script, when you set it CClientScript::POS_END, you let the HTML renders before the javascript is loaded. |
|||
|
|
|
Do somthing thing like this by adding these line to your view files; Yii::app()->clientScript->registerScriptFile(Yii::app()->baseUrl.'/path/to/your/javascript/file'); Yii::app()->clientScript->registerCssFile(Yii::app()->baseUrl.'/path/to/css/file'); |
|||
|
|
|
You can also add scripts from controller action. Just add this line in an action method then that script will apear only in that view:
where POS_HEAD tell framework to put script in head section |
|||
|
|
|
In Yii framework, You can include js and css using below method. Including CSS:
Including JS:
Including Image:
Note:
|
|||
|
|