6
A
回答
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">'
}
);
});
相關問題
- 1. GridView凍結標題行
- 2. 凍結標題中的GridView
- 3. 只在垂直滾動條上凍結gridview標題
- 4. 滾動時凍結列標題
- 5. 垂直滾動時凍結gridview pager
- 6. 在ASP.NET中凍結GridView標題?
- 7. GridView與凍結標題和PagerTemplate
- 8. GridView:凍結第一列和凍結列的標題
- 9. 鼠標滾動凍結鉻標籤
- 10. $ ionicScrollDelegate凍結滾動
- 11. Listview滾動凍結
- 12. 在GridView中凍結標題標題asp.net c#
- 13. Slickgrid垂直滾動凍結列問題
- 14. 凍結gridview標頭和SUB標頭
- 15. Grid/ScrollViewer-凍結網格標題行垂直滾動,但不是水平滾動
- 16. JScrollPane具有凍結和可滾動組件的列標題
- 17. 在SSRS中滾動時凍結列標題
- 18. 滾動時在瀏覽器中凍結列標題
- 19. 滾動行時無法凍結表格標題?
- 20. Wpf datagrid滾動條凍結
- 21. $ ionicScrollDelegate.scrollTop凍結頁面滾動
- 22. GridView凍結頁眉
- 23. 固定gridview標題,而滾動
- 24. IE8固定標題,可滾動GridView
- 25. Datagridview凍結標題行
- 26. 在ASP GridView中凍結列/標題Chrome和IE9 +
- 27. 水平和垂直GridView與凍結標題和列
- 28. 保持Gridview標題與列凍結後列的大小相同
- 29. GridView滾動奇怪問題
- 30. GridView中的列凍結
下面的鏈接顯示了一種方法來實現這一[凍結GridView的列和集管在ASP.Net CSS](http://www.vbknowledgebase.com/?Id=91&Desc= Freeze-GridView-Columns-and-Headers-in-ASP.Net-CSS)我爲此問題添加了2個鏈接,您可以嘗試。對我來說,我建議的第一個工作,所以很可能你錯過了一些東西。然而,其他兩種解決方案也在工作,所以你可以試用它們。 [使用固定標題的Gridview](http://www.codeproject.com/Articles/250669/Gridview-with-Fixed-Header)和[通過創建客戶端擴展程序來凍結ASP.NET GridView標題](http:// weblogs .asp.net/d – 2012-03-10 19:08:20
感謝Aristotelis。但我已經嘗試過,這對我沒有任何作用。是否有任何方法凍結標題編程方式。 – Indra 2012-03-11 03:57:34
我試過類似的東西... http://stackoverflow.com/questions/28351955/how從列表和一個asp-net-generated-gridview-tabl,但寬度不匹配 – SearchForKnowledge 2015-02-05 21:08:14