繁体   English   中英

如何在动态创建的Gridview中创建按钮?

[英]How to create button in dynamically created Gridview?

我正在使用AJAX Control Toolkit创建Tabpanels 每个面板均按照以下代码填充有gridview。

现在,我想为每一行添加一个按钮。 单击它时,它应该作为该行的单元格之一作为参数传递,但是由于Gridview是动态创建的,所以我不知道如何。 有小费吗?

foreach (DataTable dt in DataSet1.Tables)
{
    GridView gv = new GridView();
    var thepanel = new AjaxControlToolkit.TabPanel();
    gv.DataSource = dt;
    gv.DataBind();
    thepanel.Controls.Add(gv);
    TabContainer.Controls.Add(thepanel);
}

您可以添加一个选择按钮,网格如下:

Gridview1.AutoGenerateSelectButton=true;

我刚刚找到了一个可能对此感兴趣的解决方案:

首先,您应该在databind之前加入fllwg行:

gv.RowDataBound += gv_RowDataBound;
gv.RowCommand += gv_RowCommand;

然后定义RowDataBound以插入Linkbutton:

protected void gv_RowDataBound(object sender, GridViewRowEventArgs e)
    {
        if (e.Row.RowType == DataControlRowType.DataRow)
        {

            LinkButton butIgnorar = new LinkButton()
            {
               CommandName = "Ignorar",
               ID = "butIgnorar",
               Text = "Ignorar",
               //optional: passes contents of cell 1 as parameter
               CommandArgument =  e.Row.Cells[1].Text.ToString()
            };
            //Optional: to include some javascript cofirmation on the action
            butIgnorar.Attributes.Add("onClick", "javascript:return confirm('Are you sure you want to ignore?');");
            TableCell tc = new TableCell();
            tc.Controls.Add(butIgnorar);
            e.Row.Cells.Add(tc);
        }
    }

最后,您从RowCommand调用命令

protected void gv_RowCommand(object sender, GridViewCommandEventArgs e)
    {

        string currentCommand = e.CommandName;
        string parameter= e.CommandArgument.ToString();

        if (currentCommand.Equals("Ignorar"))
        {
            yourMethodName(parameter);
        }
    }

希望这对某人有帮助!

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM