1

我正在尝试BoundField为我的 custom 制作一个自定义(列)GridView。我添加了文本框来FooterRow管理列的过滤。它显示得很好,但TextChanged从未引发该事件。我想这是因为在每次回发时都会重新创建文本框,而不是持久化。

这是我的代码:

public class Column : BoundField
{
    public override void InitializeCell(DataControlFieldCell cell, DataControlCellType cellType, DataControlRowState rowState, int rowIndex)
    {
        base.InitializeCell(cell, cellType, rowState, rowIndex);
        if (cellType == DataControlCellType.Footer)
        {
            TextBox txtFilter = new TextBox();
            txtFilter.ID = Guid.NewGuid().ToString();
            txtFilter.Text = "";
            txtFilter.AutoPostBack = true;
            txtFilter.TextChanged += new EventHandler(txtFilter_TextChanged);
            cell.Controls.Add(txtFilter);
        }
    }

    protected void txtFilter_TextChanged(object sender, EventArgs e)
    {
        // Never get here
    }
}

我尝试了一个复选框,它起作用了。

4

2 回答 2

1

我在 WPF 应用程序中遇到了同样的问题。像这样对我来说简直就是工作,

 TextBox txtBx = new TextBox();
 txtBx.Width = 300;
 txtBx.TextChanged += txtBox_TextChanged;

它呼唤,

private void txtBox_TextChanged(object sender, EventArgs e)
    {
        errorTxt.Text = "Its working";
    }

“errorTxt”是一个预定义的文本块。希望这会帮助一些人..

于 2014-10-03T17:39:23.390 回答
0

解决方案:

我终于找到了问题,但我不明白!问题出在使用 Guid 生成的 ID 属性上。只是删除它解决了我的问题。

public class Column : BoundField
{
    public override void InitializeCell(DataControlFieldCell cell, DataControlCellType cellType, DataControlRowState rowState, int rowIndex)
    {
        base.InitializeCell(cell, cellType, rowState, rowIndex);
        if (cellType == DataControlCellType.Footer)
        {
            TextBox txtFilter = new TextBox();
            // Removing this worked
            //txtFilter.ID = Guid.NewGuid().ToString(); 
            txtFilter.Text = "";
            txtFilter.AutoPostBack = true;
            txtFilter.TextChanged += new EventHandler(txtFilter_TextChanged);
            cell.Controls.Add(txtFilter);
        }
    }

    protected void txtFilter_TextChanged(object sender, EventArgs e)
    {
        // Never get here
    }
}
于 2013-04-18T13:15:52.217 回答