dmk-design / yii2-offcanvas-b4
Extension for adding collapsible Sidebar to Yii2 project with Ajax Content
Installs: 58
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- yiisoft/yii2: ^2
This package is auto-updated.
Last update: 2025-03-20 06:40:38 UTC
README
Extension for adding collapsible Sidebar to Yii2 project with Ajax Content
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist dmk-design/yii2-offcanvas-b4 "*"
or add
"dmk-design/yii2-offcanvas-b4": "*"
to the require section of your composer.json
file.
Usage
Once the extension is installed, simply use it in your code by :
<?= \dmkdesign\offcanvas\OffCanvas::widget(); ?>``` ```javascript let sidebar = new OffCanvas('.bs-canvas-right'); //if you want the backdrop to open and close sidebar.insertBackdrop() sidebar.setTitle("My Title"); sidebar.setContent("<div>My Content</div>") sidebar.setFooter("Buttons?") sidebar.show();