Overcoming removal of client helpers (e.g. ajaxLink) and ClientScript in Yii 2.0

Comparing #5 with #6

Revision #6 was created by Kartik V Kartik V on May 6, 2014, 6:05:35 AM.

Elaborate description

Content

[...]
Solution
--------
You can easily create and combine all such client helpers for your need into separate JS files. Use the new [AssetBundle and AssetManager](http://www.yiiframework.com/doc-2.0/guide-assets.html "") functionality with the View object in Yii2, to manage these assets and how they are loaded.

Alternatively
, inline assets (JS/CSS) can be registered at runtime from within the **`View`**.
For example you can clearly simulate the ajaxLink feature using a inline javascript. Its however recommended if you can merge where possible, client code (JS/CSS) into separate JS/CSS files and loaded through the AssetBundle. Note there is no more need of a CClientScript anymore:


```php
$script = <<< JS
[...]