make table scrollable separate
jquery.tableScrollable.js
tableのtheadを固定してtbodyのみをスクロール可能にするプラグインです。
最低限のCSS処理しかしていないので、テーブルのデザインを破壊しません。
Twitter Bootstrapのtableと合わせて使うのに便利です。
This is super simple table scrollable plugin.
It makes table to fixed thead and scrollable tbody.
<head>
...
<script src="path/to/jquery.js"></script>
<script src="path/to/jquery.tableScrollable.js"></script>
<script>
$(function() {
$('#table-id').tableScrollable();
});
</script>
...
</head>
Options
$('#table-id').tableScrollable({
height : 400 // tbody's height (default 400)
});
版权声明:
1、该文章(资料)来源于互联网公开信息,我方只是对该内容做点评,所分享的下载地址为原作者公开地址。2、网站不提供资料下载,如需下载请到原作者页面进行下载。