如何在Datalist的OnItemBound上引用控件?

时间:2009-12-10 21:41:24

标签: c# .net asp.net datalist

我需要在控件上设置自定义属性,因为它绑定到数据列表。我看到事件参数有一组控件但我没有看到任何与它们相关的引用名称。怎么办呢?

当我尝试这个时:

(e.Item.FindControl("autoChartChkBox") as CheckBox).Attributes.Add("CompanyToken", "CompanyToken");

控件始终为“null”。我想要找到的控件添加到我的数据模板中。这是我的ItemTemplate作业,下面是真正的圣殿。请注意protected CheckBox autoChartChkBox;这是我试图通过OnDataItemBound事件操纵的控件。

   alertList.ItemTemplate = new AlertItemTemplate(groupTracker);


  private class AlertItemTemplate : ItemTemplateBase 
    {
        private readonly GroupHeaderTracker groupTracker;
        protected CheckBox autoChartChkBox;


        public override void DataBind() 
        {

            Label autoChartLbl;


            Alert item = (Alert)((DataListItem)this.NamingContainer).DataItem;

            CultureInfo info = Thread.CurrentThread.CurrentCulture;
            titleText.Text = String.Format("{0} - {1}", item.DateCreated.ToString(info.DateTimeFormat.ShortDatePattern), item.ID);
            this.bodyText.Text = item.Text;

            Color color = GetAlertColor(item.AlertType.Color);
            colorDisplay.BackColor = color;

            this.groupTracker.SetCurrentAlertTypeId(item.AlertType.ID);

            if(this.groupTracker.IsNewGroup())
            {
                this.alertTypeNameLabel.Text = item.AlertType.Name;
                this.alertTypeNameRow.Visible = true;
                this.alertTypeNameRow.Cells[0].Style.Add("border-top", string.Format("solid thin {0}",GetColorHexValue(color)));
                this.alertTypeNameRow.Cells[0].Style.Add("border-bottom", string.Format("solid thin {0}",GetColorHexValue(color)));

                //Auto Chart
                TableCell autoChartCell;
                autoChartCell = new TableCell();
                autoChartCell.Width = 50;
                autoChartCell.BorderStyle = BorderStyle.Solid;
                autoChartCell.VerticalAlign = VerticalAlign.Top;
                autoChartCell.Controls.Add(autoChartChkBox = new CheckBox());
                autoChartCell.Controls.Add(autoChartLbl = new Label());
                Rows[1].Cells.Add(autoChartCell);
                autoChartLbl.Text = "AutoChart";
                autoChartChkBox.Checked = item.IncludeInChartNotes;

                alertTypeNameCell.ColumnSpan = Rows[1].Cells.Count;

            }

2 个答案:

答案 0 :(得分:2)

(e.Item.FindControl("yourControlName") as YourControlType).Attributes.Add("onClick","DoSomethingHere()");

答案 1 :(得分:0)

我在后面的代码中构建我的ItemTemplate(不是我的选择)。在任何情况下,您都必须明确命名您要查找的控件。

autoChartChkBox.ID = "autoChartChkBox";

然后在OnItemDataBound事件中,您使用此ID作为FindControl()的参数。

就我而言:

protected void Data_ItemBound(object sender, DataListItemEventArgs e)
{
    if (e.Item.DataItem != null)
    {
        if(e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
        {
            CheckBox control = (CheckBox)e.Item.FindControl("autoChartChkBox");
        }
    }
}

希望这有助于其他人。