29

是否可以对 ASP.NET CheckBoxList 进行 DataBind,以使数据中的字符串值成为复选框的标签,并且布尔值选中/取消选中该框?

在我的 asp.net 网络表单上,我有一个这样的 CheckBoxList:

<asp:CheckBoxList runat="server" ID="chkListRoles" DataTextField="UserName" DataValueField="InRole" />

在后面的代码中,我有以下代码:

var usersInRole = new List<UserInRole> 
{ 
  new UserInRole { UserName = "Frank", InRole = false},
  new UserInRole{UserName = "Linda", InRole = true},
  new UserInRole{UserName = "James", InRole = true},
};

chkListRoles.DataSource = usersInRole;
chkListRoles.DataBind();

我有点希望在 InRole = true 时选中复选框。我也试过 InRole = "Checked"。结果是一样的。我似乎找不到 DataBind 的方法并自动选中/取消选中复选框。

目前,我通过为 DataBound 事件中的相应项目设置 selected = true 来解决问题。似乎有一个更清洁的解决方案超出了我的掌握。

谢谢你

4

5 回答 5

42

编辑:没有办法通过标记来做到这一点。DataValueField 不能确定复选框项是否被选中。它检索或存储要在回发中使用的值。DataValueField在 CheckBoxLists、RadioButtonLists、ListControl 等中很常见。

正如您已经发现的那样,这是预先选择复选框的唯一方法。

chkListRoles.DataSource = usersInRole;
chkListRoles.DataBind();

foreach(ListItem item in chkListRoles.Items)
 item.Selected = usersInRole.Find(u => u.UserName == item.Text).InRole;
于 2009-05-18T20:12:00.300 回答
10

OnItemDataBound在厌倦了-binding之后,我为此做了一个自定义控件。它会让你绑定Selected属性。您可以RadioButtonList通过更改自定义控件的派生内容轻松地制作相同的控件。

要使用它,只需DataCheckedField在标记中创建控件时添加属性。请记住在web.config文件中引用自定义控件。

标记

<myControls:SimpleCheckBoxList runat="server" ID="chkListRoles"
                               DataCheckedField="InRole"
                               DataTextField="UserName"
                               DataValueField="UserId" />

控制代码

public class SimpleCheckBoxList : System.Web.UI.WebControls.CheckBoxList
{
    public string DataCheckedField
    {
        get
        {
            string s = (string)ViewState["DataCheckedField"];
            return (s == null) ? String.Empty : s;
        }
        set
        {
            ViewState["DataCheckedField"] = value;
            if (Initialized)
                OnDataPropertyChanged();
        }
    }

    protected override void PerformDataBinding(IEnumerable dataSource)
    {
        if (dataSource != null)
        {
            if (!this.AppendDataBoundItems)
                this.Items.Clear();

            if (dataSource is ICollection)
                this.Items.Capacity = (dataSource as ICollection).Count + this.Items.Count;

            foreach (object dataItem in dataSource)
            {
                ListItem item = new ListItem()
                {
                    Text = DataBinder.GetPropertyValue(dataItem, DataTextField).ToString(),
                    Value = DataBinder.GetPropertyValue(dataItem, DataValueField).ToString(),
                    Selected = (DataCheckedField.Length > 0) ? (bool)DataBinder.GetPropertyValue(dataItem, DataCheckedField) : false
                };
                this.Items.Add(item);
            }
        }
    }
}
于 2011-06-22T19:16:15.670 回答
6

使用标记是不可能的。您可以做的是像您希望的那样绑定复选框列表 - 使用 DataValueField 中的布尔值,然后简单地将其添加为 OnDataBound 事件。

protected void myCheckBoxList_DataBound(object sender, EventArgs e)
    {
        foreach (ListItem item in myCheckBoxList.Items)
        {
            item.Selected = bool.Parse(item.Value);
        }
    }

该解决方案与 Jose Basilio 提出的解决方案之间的区别在于,该解决方案适用于所有类型的数据绑定方法。例如,使用 v4.5 中的新 ModelBinding 功能与 SelectMethod 绑定。

于 2011-12-06T04:00:17.770 回答
0

我认为您必须告诉控件将其绑定到哪个属性...在本例中为“InRole”。

我玩过它,似乎没有办法绑定到复选框的选择,你必须自己做。我能够绑定到清单的文本和值,这似乎只处理列表中每个复选框的标签。

于 2009-05-18T19:49:19.597 回答
0

使用 aDataList可能是另一种选择

<asp:DataList ID="dataListRoles" runat="server">
    <ItemTemplate>
        <asp:CheckBox runat="server" Text='<%# Eval("UserName ") %>' Checked='<%# Eval("IsInRole") %>' />
    </ItemTemplate>
</asp:DataList>
于 2021-06-28T23:00:29.647 回答