如何冻结Asp.net gridview标题?我试图以不同的方式进行,但无法完成。
我正在使用 ASP 2.0 和VS 2010。
任何人都可以帮助我吗?
答案 0 :(得分:0)
我使用jquery floatThead
http://mkoryak.github.io/floatThead/#intro
我不得不使用一些jquery转换为第一行到thead才能工作。
以下示例:
$(document).ready(function () {
var $theadCols = $("#ContentPlaceHolder1_grdCashflow tr:first-child"),
$table = $("#ContentPlaceHolder1_grdCashflow");
// create thead and append <th> columns
$table.prepend("<thead/>");
$table.find("thead").append($theadCols);
// init stickyHeader
$table.floatThead();
//$table = $("#ContentPlaceHolder1_grdCashflow");
$table.dataTable(
{
"paging": false,
"ordering": false,
"dom":'<"top"fi>rt<"bottom"><"clear">'
}
);
});