3

我有一个 CheckBoxList 如下

protected void Page_Load(object sender, EventArgs e)
{
    if (!IsPostBack)
    {
        CheckBoxList1.Items.Add(new ListItem("Check/Uncheck All","0"));
        CheckBoxList1.Items.Add(new ListItem("A","1"));
        CheckBoxList1.Items.Add(new ListItem("B","2"));
        CheckBoxList1.Items.Add(new ListItem("C", "3"));
        CheckBoxList1.Items.Add(new ListItem("D", "4"));
    }        
}

每当检查第一项以检查其余项目时,我都希望在未选中以取消选中其余部分时。用户也可以单独选择每个项目。

我想用没有 JavaScript 或 JQuery 的代码来做到这一点。

4

7 回答 7

5

试试这个

protected void CheckBoxList1_SelectedIndexChanged(object sender, EventArgs e)
{
    string result = Request.Form["__EVENTTARGET"];
    int index1 = int.Parse(result.Substring(result.IndexOf("$") + 1));
    if (index1 == 0)
    {
        bool tf = CheckBoxList1.Items[index1].Selected ? true : false;
        CheckUncheckAll(tf);
    }
}
void CheckUncheckAll(bool tf)
{
    foreach (ListItem item in CheckBoxList1.Items)
    {
        item.Selected = tf;
    }
}
于 2013-09-25T16:18:00.933 回答
2
for(int index = 0; index < checkedListBox.Items.Count; ++index)
{
    checkedListBox.SetItemChecked(index, false);
}
于 2014-11-25T12:54:37.380 回答
1

使用这段代码,您可以从后面的 C# 代码访问复选框,并且可以选中/取消选中它们,甚至启用/禁用它们。希望它可能会有所帮助。

foreach (ListItem item in CheckBoxList.Items) {
    item.Selected = true;
    item.Enabled = true;
}
于 2015-12-17T10:22:39.537 回答
0

在 .aspx 页面中,请为复选框列表添加 autopostback="true"

那么请添加此事件。它的工作我已经检查过了。

Private Sub CheckBoxList1_SelectedIndexChsanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles CheckBoxList1.SelectedIndexChanged
    Dim result As String = Request.Form("__EVENTTARGET")
    Dim checkedBox As String() = result.Split("$"c)
    Dim index As Integer = Integer.Parse(checkedBox(checkedBox.Length - 1))
    If CheckBoxList1.Items(index).Text = "Check/Uncheck All" Then
        Dim Chkbool As Boolean = CheckBoxList1.Items(index).Selected
        For Each item In CheckBoxList1.Items
            item.selected = Chkbool
        Next
    End If
End Sub
于 2013-09-25T17:37:57.977 回答
0

有一种使用 jquery 在 asp CheckBoxList 中选择所有项目的通用方法。您可以在具有全选功能的表单上拥有尽可能多的 CheckBoxList 控件。你只需要确保

  1. 你的 CheckBoxList 有allowSelectAll
  2. 您在复选框列表中添加了一个 ListItem,以允许用户选择值为 All 的All

chkBoxList.Items.Insert(0, new ListItem("All", "All"));

你只需要以下代码

<script>
    $('.allowSelectAll :checkbox[value=All]').click(function () {
        var toggle = this.checked;
        $(this).closest('.allowSelectAll').find(":checkbox").attr("checked", toggle);
    });
</script>

在下面的代码spinet中,我有4个复选框列表

<div >
<label>Experience 1</label>
<asp:CheckBoxList ID="chklstExp1" runat="server"  CssClass="allowSelectAll">
</asp:CheckBoxList>

<label>Experience 2</label>
<asp:CheckBoxList ID="chklstExp2" runat="server" CssClass="allowSelectAll">
</asp:CheckBoxList>

<label>Experience 3</label>
<asp:CheckBoxList ID="chklstExp3" runat="server" CssClass="allowSelectAll">
</asp:CheckBoxList>

<label>Location</label>
<asp:CheckBoxList ID="chklstLocation" runat="server" CssClass="allowSelectAll">
</asp:CheckBoxList>

<asp:Button runat="server" ID="btnShowReport" OnClick="btnShowReport_Click" Text="Show Report"/>
</div>
于 2014-05-20T00:51:10.147 回答
0

为了使物品为假,您需要执行以下操作:

checkList.ClearSelection();

为了使项目为真:

foreach (var item in checkList.Items.Cast<ListItem>().Where (li => li.Value == "1" || li.Value == "3" || li.Value == "5"))
{
   item.Selected = true;
}
于 2017-02-28T05:11:59.997 回答
0

检查所有

foreach (ListItem item in CheckBoxList.Items)
{
    item.Selected = true;    
}

为所有

 CheckBoxList.ClearSelection();
于 2018-06-11T07:49:51.017 回答