Reputation: 11
I updated a project from Yii2 version 2.0.6 to 2.0.14. Everything is working fine, just the Kartik gridview is throwing this error
Setting unknown property: yii\bootstrap\ButtonDropdown::containerOptions
Upvotes: 0
Views: 2072
Reputation: 22174
yii\bootstrap\ButtonDropdown::$containerOptions
property was introduced in version 2.0.1 of yii2-bootstrap
extension - make sure that you have it installed:
composer require "yiisoft/yii2-bootstrap:~2.0.1" --update-with-all-dependencies
Upvotes: 0