我有一个网格视图,其中有一个标题模板“select all”,选中后将选中网格视图行中的所有复选框。
我有一个pagesize下拉列表,在选择时将打开该数量的gridview行。最初设置为10。
最初加载gridview时,当我选择全部时,它会选择10个复选框,稍后当我将页面大小更改为50并选择all时,它仍然只选择10条记录。但是,它应该选择所有50条记录,这是没有发生的。
我将数组变量传递给文字控件,点击select all复选框,它将行数作为gridview中的数字,但JavaScript中的函数仍然保留10行的相同旧值,因此它选择10条记录。
我的代码:
protected void gvDeviceList_DataBound(object sender, EventArgs e){
try {
//repopulate the already ticked checkboxes
RePopulateCheckboxes(gvDeviceList);
if (gvDeviceList.Rows.Count > 0) {
CheckBox cbHeader = (CheckBox)(gvDeviceList.HeaderRow.FindControl("chbOptions"));
cbHeader.Attributes["onclick"] = "ChangeAllCheckBoxStates(this.checked);";
//ClientScript.RegisterArrayDeclaration("CheckBoxIDs", String.Concat("'", cbHeader.ClientID, "'"));
//Add the CheckBox's ID to the client-side CheckBoxIDs array
List<String> ArrayValues = new List<String>();
ArrayValues.Add(String.Concat("'", cbHeader.ClientID, "'"));
foreach (GridViewRow gvr in gvDeviceList.Rows) {
//Get a programmatic reference to the CheckBox control
CheckBox cb = (CheckBox)(gvr.FindControl("chbAction"));
//Add the CheckBox's ID to the client-side CheckBoxIDs array
//ClientScript.RegisterArrayDeclaration("CheckBoxIDs", String.Concat("'", cb.ClientID, "'"));
ArrayValues.Add(String.Concat("'", cb.ClientID, "'"));
}
//Output the array to the Literal control (CheckBoxIDsArray)
CheckBoxIDsArray.Text = "<script type='text/javascript'>" + "\r\n" +
"" + "\r\n" +
String.Concat("var CheckBoxIDs = new Array(", String.Join(",", ArrayValues.ToArray()), ");") + "\r\n" +
"" + "\r\n" +
"</script>";
}
Literal控件是:
<asp:Literal ID="CheckBoxIDsArray" runat="server" Visible="True"></asp:Literal>
我的JavaScript代码是:
function ChangeAllCheckBoxStates(checkState) {
// Toggles through all of the checkboxes defined in the CheckBoxIDs array
// and updates their value to the checkState input parameter
if (CheckBoxIDs != null) {
for (var i = 0; i < CheckBoxIDs.length; i++)
ChangeCheckBoxState(CheckBoxIDs[i], checkState);
}
}
任何帮助将不胜感激。