0

这必须很简单,但我很难找到它。

我有一个网格视图,我从中拉出 ObjectDataSource 并将所有数据连接放在后面的代码中。所以现在我必须手动编写数据源为我处理的所有事情(它确实为你处理了很多事情)。

所以在我的 rowEditing 事件中,我需要能够显示 EditItemTemplate。有任何想法吗?

谢谢

4

1 回答 1

0

男人!一天两次,我在发布后不久就找到了答案!

我缺少的步骤是在设置 editIndex 字段之前在事件中重新填充网格!所以这行得通

    protected void MyGrid_RowEditing(object sender, GridViewEditEventArgs e)
    {
        populateSubnetGrid();  //pulls from the Db and binds to the grid
        MyGrid.EditIndex = e.NewEditIndex;  //This is the selected row to edit
        MyGrid.DataBind();  //Make the edit Template show up

    }
于 2012-04-24T21:13:59.830 回答