使用 C# 以编程方式取消 gridview 行编辑模式

发布于 2024-11-18 02:30:33 字数 143 浏览 4 评论 0原文

我正在使用可编辑的 GridView。单击行的编辑按钮后,该行将进入可编辑模式,一旦我更新当前行的详细信息,该行就会被保存并进入正常模式。

在这里我面临一个问题。当我将行设置为可编辑模式时,单击按钮(不是网格的一部分)时,我想将可编辑行模式设置为正常模式。

I am using a Editable GridView. On clicking edit button of a row, the row is coming in Editable mode and once I update the details of a current row, the row is getting saved and comes in normal mode.

Here I face one issue. When I make row to a Editable mode, On click of a button (which is not a part of grid) I want to bring Editable row mode to a normal mode.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

草莓味的萝莉 2024-11-25 02:30:33

将 gridview 的 EditIndex 值更改为 -1。

protected void Button1_Click(object sender, EventArgs e)
    {
        GridView1.EditIndex = -1;
    }

Change the gridview's EditIndex value to -1.

protected void Button1_Click(object sender, EventArgs e)
    {
        GridView1.EditIndex = -1;
    }
要走就滚别墨迹 2024-11-25 02:30:33

您可以将其放入“RowCancelingEdit”事件中

我的 Gridview 名称是 grdViewDetails。

 protected void grdViewDetails_RowCancelingEdit(object sender, GridViewCancelEditEventArgs e)
        {
            grdViewDetails.EditIndex = -1;
            grdViewDetails.DataSource = YourDatasource; //a dataset in my case

            //Bind data to the GridView control.
            grdViewDetails.DataBind();
        }

You can put this in your "RowCancelingEdit" event

My Gridview name is grdViewDetails.

 protected void grdViewDetails_RowCancelingEdit(object sender, GridViewCancelEditEventArgs e)
        {
            grdViewDetails.EditIndex = -1;
            grdViewDetails.DataSource = YourDatasource; //a dataset in my case

            //Bind data to the GridView control.
            grdViewDetails.DataBind();
        }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文