您好,登錄后才能下訂單哦!
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;
}
}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。