我使用 GridView 来显示并允许修改数据。但不是直接使用数据库中的数据,而是必须转换它们(考虑在不同日期格式之间切换),所以在 RowDataBound 事件中我更新一列的 Text 字段。但是,当捕获 OnRowEditing 事件后,该数据列将变得不可编辑。
代码:
public void OnRowEditing(Object sender, GridViewEditEventArgs e)
{
gv.DataSource = getGridViewDataSource();
gv.EditIndex = e.NewEditIndex;
gv.DataBind();
}
public void OnRowDataBound(Object sender, GridViewRowEventArgs e)
{
// convert time display to another format
if (e.Row.RowType == DataControlRowType.DataRow)
{
// If I comment out this line, then the field is editable,
// but the data format is not what I want
e.Row.Cells[4].Text = process(e.Row.Cells[4].Text);
}
}
public SqlDatasource getGridViewDataSource() {//Customer sql data source}
public string process(string) {//Customer code}
代码遵循此处提供的示例。问题是,除了改变显示的文本之外,还有什么改变?如果我真的希望它仍然可以编辑怎么办?MSDN 似乎没有解释这一点。任何人都可以帮忙吗?