Commit c5e93efd by Alexander Kochetov

Bugfix

parent 512a9bd1
...@@ -53,8 +53,8 @@ class Widget extends \yii\base\Widget ...@@ -53,8 +53,8 @@ class Widget extends \yii\base\Widget
public function init() public function init()
{ {
parent::init(); parent::init();
if (!isset($this->clientOptions['id'])) { if (!isset($this->options['id'])) {
$this->clientOptions['id'] = $this->getId(); $this->options['id'] = $this->getId();
} }
} }
...@@ -64,7 +64,7 @@ class Widget extends \yii\base\Widget ...@@ -64,7 +64,7 @@ class Widget extends \yii\base\Widget
*/ */
protected function registerPlugin($name) protected function registerPlugin($name)
{ {
$id = $this->clientOptions['id']; $id = $this->options['id'];
$view = $this->getView(); $view = $this->getView();
$view->registerAssetBundle(static::$responsive ? 'yii/bootstrap/responsive' : 'yii/bootstrap'); $view->registerAssetBundle(static::$responsive ? 'yii/bootstrap/responsive' : 'yii/bootstrap');
$view->registerAssetBundle("yii/bootstrap/$name"); $view->registerAssetBundle("yii/bootstrap/$name");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment