This commit is contained in:
Alexander Kochetov
2013-05-22 22:43:19 +04:00
parent 512a9bd1a1
commit c5e93efde3

View File

@@ -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
*/ */
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");