aayushmhu / yii2-htmltocsv
Export Any HTML Table into CSV or EXCEL
Installs: 25
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Language:JavaScript
Type:yii2-extension
Requires
- php: ^7.1 || ^8.0
- yiisoft/yii2: ~2.0.0
This package is auto-updated.
Last update: 2024-10-29 06:13:09 UTC
README
To Install This Plugin Run THis Command into your terminal
"composer require aayushmhu/yii2-htmltocsv dev-master"
To Use This Extension You Just Need to Write This
For Example:
use \aayushmhu\htmltocsv\ExportButton;
echo ExportButton::widget([
'tableid'=>'table_id',
'filename'=>'Hello',
'options' => [
'id'=>\aayushmhu\htmltocsv\ExportButton::DEFAULT_BUTTON,
'class'=>'btn btn-primary',
],
]);