我正在尝试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
}
}
我尝试了一个复选框,它起作用了。