gridview固定表头后,排序失效。
我的gridview在固定表头后<head id="Head1" runat="server">
<title>sssd</title>
<script type="text/javascript">
function intiGridview()
{
alert('ok');
var bodyGridView = document.getElementById("<%=gdvSISchedule.ClientID%>");
var headGridView = bodyGridView.cloneNode(true)
for(i = headGridView.rows.length -1;i > 0;i--)
headGridView.deleteRow(i)
bodyGridView.deleteRow(0)
headdiv.appendChild(headGridView)
}
window.onload = intiGridview
</script>
</head>
<body style="margin:0">
<div id="headdiv">
</div>
<div id="bodydiv" style="height: 200px">
<asp:GridView ID="……
表头不固定时,排序是可以的。但是把表头固定后,点击表头,排序的代码能执行,但是画面的效果没有显示出来。大家有么有遇到过这样的问题 --------------------编程问答-------------------- 没人知道吗 --------------------编程问答-------------------- 没人知道吗 --------------------编程问答--------------------
补充:.NET技术 , C#