我正在使用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);
}
答案 0 :(得分:0)
您可以按如下方式向网格添加选择按钮:
Gridview1.AutoGenerateSelectButton=true;
答案 1 :(得分:0)
我刚刚找到了一个可能对此感兴趣的解决方案:
首先,您应该在数据绑定之前包含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);
}
}
希望这对某人有帮助!