如何使用jquery分页Gridview?

时间:2014-08-11 06:15:45

标签: c# javascript jquery asp.net gridview

我希望jquery使用GridView control,就像这个演示一样:Here

我是jquery的初学者,我怎么能像演示一样使用分页到我的GridView?

这是我的HTML:

      <asp:GridView PageSize="5"   OnPreRender="gvListCash_PreRender"   CssClass="footable" AllowPaging="true"  Width="100%" DataSourceID="SqlDataSource3"   ID="gvListCash"  RowStyle-Wrap="false" runat="server" AutoGenerateColumns="False" DataKeyNames="id"  >
               <Columns>
                    <asp:BoundField DataField="id" HeaderText="id" InsertVisible="False" ReadOnly="True" SortExpression="id" />
                    <asp:BoundField DataField="name" HeaderText="name" SortExpression="name" />
                    <asp:BoundField DataField="type" HeaderText="type" SortExpression="type" />
                      <asp:BoundField DataField="price" HeaderText="price" SortExpression="price" />


                </Columns>

         </asp:GridView>

<script type="text/javascript">
         $(function () {
             $('table').footable();

             $('.colour-switch a').click(function (e) {
                 e.preventDefault();
                 $('.colour-switch a').each(function () {
                     $('table').removeClass($(this).data('class'));
                 });
                 $('table').addClass($(this).data('class'));
             });
         });
 </script>

这是我的项目演示图片: enter image description here

我为我的gridview设置PagerStyle-CssClass="pagination pagination-centered",但它不起作用!

1 个答案:

答案 0 :(得分:0)

你可以使用下面的链接,它非常简单,逻辑上很好用。

http://aspsnippets.com/Articles/Paging-in-ASPNet-GridView-using-jQuery-AJAX.aspx