0

我使用 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 似乎没有解释这一点。任何人都可以帮忙吗?

4

1 回答 1

1

在文章的示例中,没有自定义OnRowEditing事件。您的函数gv.DataBind()触发OnRowDataBound两次 - 第一次使用填充值,第二次没有它(行处于编辑状态)。所以你的函数应该是这样的:

    public void OnRowDataBound(Object sender, GridViewRowEventArgs e)
    {
        // convert time display to another format
        if (e.Row.RowType == DataControlRowType.DataRow && e.Row.RowState != DataControlRowState.Edit)
        {
            e.Row.Cells[4].Text = process(e.Row.Cells[4].Text);
        }
    }

添加if检查也是一个好主意,但在这种情况下可能没有必要:

    public void OnRowDataBound(Object sender, GridViewRowEventArgs e)
    {
        // convert time display to another format
        if (e.Row.RowType == DataControlRowType.DataRow && e.Row.RowState != DataControlRowState.Edit)
        {
            if(!string.IsNullOrEmpty(e.Row.Cells[4].Text))
                e.Row.Cells[4].Text = process(e.Row.Cells[4].Text);
        }
    }
于 2015-03-18T20:50:21.797 回答