温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

GridView 排序 jquery.tablesorter

发布时间:2020-07-25 20:30:31 来源:网络 阅读:802 作者:小仙女KOMons 栏目:web开发

jquery.tablesorter 是个不错的表格排序插件

但是在给表格二次加载 也就是 点击按钮再加载数据的时候 表格失去了排序功能。

查阅资料  一般说 加上 $(".tablesorter").trigger("update");  这句,但是我用没效果,可能因为我用了 UpdatePanel。后来终于看到个有效果的 ,在这里备忘一下:

  <script>

          function pageLoad() {

              $(".tablesorter").tablesorter();

          }

 </script>

下面说下要注意的,记得给GridView 加上<thead> 默认是没有的,但是tablesorter 需要

OnDataBound="GridView1_DataBound"


 protected void GridView1_DataBound(object sender, EventArgs e)

        {


            if (this.GridView1.Rows.Count > 0)

            {

                GridView1.UseAccessibleHeader = true;

                GridView1.HeaderRow.TableSection = TableRowSection.TableHeader;

                GridView1.FooterRow.TableSection = TableRowSection.TableFooter;

            }

        }



 protected void Page_Load(object sender, EventArgs e)

        {

           

            if (this.GridView1.Rows.Count > 0)

            {

                GridView1.UseAccessibleHeader = true;

                GridView1.HeaderRow.TableSection = TableRowSection.TableHeader;

                GridView1.FooterRow.TableSection = TableRowSection.TableFooter;

            }

        }



向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI