将Jquery DataTables插件应用于ASP GridView

问题描述 投票:12回答:3

我以前在PHP中使用过此插件,所以我想我会再次使用它来进行ASP项目。

由于某种原因,它不适用于我的GridView控件。

javascript块:

<link type="text/css" href="../scripts/demo_table.css" rel="stylesheet" />  

    <script type="text/javascript" language="javascript" src="../scripts/jquery-1.4.1.js"></script>
    <script type="text/javascript" language="javascript" src="../scripts/jquery.dataTables.js"></script>

    <script type="text/javascript" charset="utf-8">
        $(document).ready(function () {
            $(".gvv").dataTable();
        });
        </script>

Gridview代码:

<asp:GridView ID="gv" runat="server" AutoGenerateColumns="False" 
        DataKeyNames="Prop_No" DataSourceID="testtt" CssClass="gvv">

我做错了什么或DataTables不能用于ASP控件?

c# jquery asp.net jquery-datatables
3个回答
37
投票

问题是GridView控件不添加<thead>元素,只是将标题行放入生成表的<body>部分,而数据表插件需要表中的<thead>部分。尝试使用以下脚本:

$(function () {
    $(".gvv").prepend( $("<thead></thead>").append( $(this).find("tr:first") ) ).dataTable();
});

附:您也可以使用不使用Repeater或ListView等默认布局呈现的控件


15
投票

你可以使用GridView Prerender事件添加theadtbodytfoot标签试试这段代码

protected void GridView1_PreRender(object sender, EventArgs e) {
  // You only need the following 2 lines of code if you are not 
  // using an ObjectDataSource of SqlDataSource
  GridView1.DataSource = Sample.GetData();
  GridView1.DataBind();

  if (GridView1.Rows.Count > 0) {
   //This replaces <td> with <th> and adds the scope attribute
   GridView1.UseAccessibleHeader = true;

   //This will add the <thead> and <tbody> elements
   GridView1.HeaderRow.TableSection = TableRowSection.TableHeader;

   //This adds the <tfoot> element. 
   //Remove if you don't have a footer row
   GridView1.FooterRow.TableSection = TableRowSection.TableFooter;
  }

}

不要忘记在源页面上添加事件处理程序,如下所示

<asp:GridView ID="GridView1" runat="server" CssClass="gvv"
      OnPreRender="GridView1_PreRender">
</asp:GridView>

现在你可以像往常一样简单地调用JQuery函数来渲染它

$(document).ready(function () {
    $(".gvv").dataTable();
});

1
投票

请尝试下面的代码。

© www.soinside.com 2019 - 2024. All rights reserved.