Comparing
#5 with
#6
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[...]