edofre / yii2-float-thead
floatThead jQuery 扩展的 Yii2 包装器
V1.0.2
2017-01-06 08:47 UTC
Requires
- php: >=5.5.0
- bower-asset/floatthead: 1.4.5
- yiisoft/yii2: *
This package is not auto-updated.
Last update: 2024-09-14 19:04:10 UTC
README
安装
安装此扩展的首选方式是通过 composer。
安装,可以运行
$ php composer.phar require edofre/yii2-float-thead "V1.0.2"
或者将以下内容添加到你的 composer.json
文件的 require
部分:
"edofre/yii2-float-thead": "V1.0.2"
```
使用方法
<?php \edofre\floatthead\FloatThead::widget( [ 'table_id' => 'table-id', 'options' => [ 'position' => 'fixed', 'scrollContainer' => true, ], ] ); ?> <div class='wrapper small' style="overflow: auto; height: 300px;"> <table id="table-id" class="table large template table-bordered table-striped"> <thead style="background: white"> <tr> <th>Header 1</th> <th>Header 2</th> <th>Header...3</th> </tr> </thead> <tbody> <tr> <td>Cell Content 1</td> <td>Cell Content 2</td> <td>Cell Content 3</td> </tr> <tr> <td>More Cell Content 1</td> <td>More Cell Content 2</td> <td>More Cell Content 3</td> </tr> <tr> <td>Even More Cell Content 1</td> <td>Even More Cell Content 2</td> <td>Even More Cell Content 3</td> </tr> <tr> <td>And Repeat 1</td> <td>And Repeat 2</td> <td>And Repeat 3</td> </tr> <tr> <td>Cell Content 1</td> <td>Cell Content 2</td> <td>Cell Content 3</td> </tr> <tr> <td>More Cell Content 1</td> <td>More Cell Content 2</td> <td>More Cell Content 3</td> </tr> <tr> <td>Even More Cell Content 1</td> <td>Even More Cell Content 2</td> <td>Even More Cell Content 3</td> </tr> <tr> <td>And Repeat 1</td> <td>And Repeat 2</td> <td>And Repeat 3</td> </tr> <tr> <td>Cell Content 1</td> <td>Cell Content 2</td> <td>Cell Content 3</td> </tr> <tr> <td>More Cell Content 1</td> <td>More Cell Content 2</td> <td>More Cell Content 3</td> </tr> <tr> <td>Even More Cell Content 1</td> <td>Even More Cell Content 2</td> <td>Even More Cell Content 3</td> </tr> <tr> <td>And Repeat 1</td> <td>And Repeat 2</td> <td>And Repeat 3</td> </tr> <tr> <td>Cell Content 1</td> <td>Cell Content 2</td> <td>Cell Content 3</td> </tr> <tr> <td>More Cell Content 1</td> <td>More Cell Content 2</td> <td>More Cell Content 3</td> </tr> <tr> <td>Even More Cell Content 1</td> <td>Even More Cell Content 2</td> <td>Even More Cell Content 3</td> </tr> <tr> <td>And Repeat 1</td> <td>And Repeat 2</td> <td>And Repeat 3</td> </tr> <tr> <td>Cell Content 1</td> <td>Cell Content 2</td> <td>Cell Content 3</td> </tr> <tr> <td>More Cell Content 1</td> <td>More Cell Content 2</td> <td>More Cell Content 3</td> </tr> <tr> <td>Even More Cell Content 1</td> <td>Even More Cell Content 2</td> <td>Even More Cell Content 3</td> </tr> </tbody> </table> </div> ?>