我正在尝试在顶部修复我的 webgrids 的标题。因此,当您滚动时,标题保持在原位。
我试过 CSS。和Javascript,没有成功。
大多数解决方案都需要每列的已知宽度。它是一个 webgrid,每列没有固定宽度。
有谁知道这样做的正确方法?
很多/所有的解决方案,标题甚至不符合表格..
<script type="text/javascript">
$(document).ready(function () {
$("#GridHeader").html("<table>" + $('#gridContent table thead').html() + "</table>");
$("#GridHeader table tr:first").append("<th style='width:12px;' ></th>");
$("#GridBody").html("<table>" + $('#gridContent table tbody').html() + "</table>");
$("#GridFooter").html("<table>" + $('#gridContent table tfoot').html() + "</table>");
$("#gridContent").hide();
});
<style type="text/css">
.colWidth { width: 200px; }
#GridBody{width: 100% ;height:200px; overflow: auto; }
#GridHeader table {width: 100%; margin-top: 0px; padding:0px; border-collapse:collapse; }
#GridFooter {width: 100% ; }
#GridHeader table th { width: 10%; border: 2px solid black;}
.title td, .title th { width: 10%; border: 2px solid black;}
#GridBody td { width: 10%; border: 2px solid black;}
</style>
<div id="Outer" >
<div id="GridHeader" class="title"></div>
<div id="GridBody"></div>
<div id="GridFooter"></div>
</div>