十年网站开发经验 + 多家企业客户 + 靠谱的建站团队
量身定制 + 运营维护+专业推广+无忧售后,网站问题一站解决
jquery.tablesorter 是个不错的表格排序插件
目前成都创新互联公司已为上千余家的企业提供了网站建设、域名、网页空间、网站托管维护、企业网站设计、饶阳网站维护等服务,公司将坚持客户导向、应用为本的策略,正道将秉承"和谐、参与、激情"的文化,与客户和合作伙伴齐心协力一起成长,共同发展。
但是在给表格二次加载 也就是 点击按钮再加载数据的时候 表格失去了排序功能。
查阅资料 一般说 加上 $(".tablesorter").trigger("update"); 这句,但是我用没效果,可能因为我用了 UpdatePanel。后来终于看到个有效果的 ,在这里备忘一下:
function pageLoad() {
$(".tablesorter").tablesorter();
}
下面说下要注意的,记得给GridView 加上 默认是没有的,但是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; } }
当前标题:GridView排序jquery.tablesorter
转载来源:http://6mz.cn/article/pjpgoe.html