jquery-freeze-table
jquery-freeze-table copied to clipboard
指定table表格高度,假如第一列固定,会出现以下问题
Hi @data2 ,
In that case, you could use scrollable options like:
<div class="table-scrollable" style="height: 200px;">
<table...
<script>
$(".table-scrollable").freezeTable({
'scrollable': true,
});
Cheers
sounds good, iwill try later.