在我的 gridview 中,可以编辑单行。
<asp:TemplateField ItemStyle-HorizontalAlign="Center">
<ItemTemplate>
<asp:ImageButton
ID="imgbtnEdit"
CommandName="Edit"
runat="server"
ImageUrl='<%# Eval("Stopped").ToString().Equals("1") ?
"/aspnet/img/edit_1.gif" :
"/aspnet/img/edit_2.gif" %>'
OnClientClick="if (!confirm('Confirm ?')) return false;" />
</ItemTemplate>
</asp:TemplateField>
protected void gv_RowEditing(object sender, GridViewEditEventArgs e)
{
string sID = gv.DataKeys[e.NewEditIndex].Value.ToString();
string queryString = "Default2.aspx?sID=" + sID.ToString();
string newWin = "var Mleft = (screen.width/2)-(1200/2);
var Mtop = (screen.height/2)-(700/2);
window.open('" + queryString + "','_blank',
'height=600,width=600,
status=yes,toolbar=no,scrollbars=yes,menubar=no,
location=no,top=\'+Mtop+\',
left=\'+Mleft+\';');";
ClientScript.RegisterStartupScript(this.GetType(), "pop", newWin, true);
}
在 rowdatabound事件中,我添加了此条件,当第二个单元格的值等于零时:
protected void gv_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
ImageButton img = (ImageButton)e.Row.FindControl("imgbtnEdit");
if (e.Row.Cells[2].Text.Equals("0"))
{
img.ImageUrl = "/aspnet/img/stop.gif";
img.Width = 18;
img.Height = 18;
img.Enabled = true;
e.Row.Cells[1].Attributes.Add("onClick", "alert('Cell 1 Clicked');");
}
}
}
但是单击图像stop.gif
时,首先打开带有Confirm?
消息的警报,最后打开带有Cell 1 Clicked
消息的警报,并在弹出的asp页的窗口中打开 Default2.aspx 用于编辑行。
在这种情况下,我需要:
Cell 1 Clicked
; 该如何解决?
在此先感谢您的帮助。
答案 0 :(得分:1)
我希望我能帮上忙。
protected void gv_RowEditing(object sender, GridViewEditEventArgs e)
{
int xCount = Int32.Parse(gv.Rows[e.NewEditIndex].Cells[2].Text);
if (xCount > 0)
{
string sID = gv.DataKeys[e.NewEditIndex].Value.ToString();
string queryString = "Default2.aspx?sID=" + sID.ToString();
string newWin = "var Mleft = (screen.width/2)-(1200/2);
var Mtop = (screen.height/2)-(700/2);
window.open('" + queryString + "','_blank',
'height=600,width=600,
status=yes,toolbar=no,scrollbars=yes,menubar=no,
location=no,top=\'+Mtop+\',
left=\'+Mleft+\';');";
ClientScript.RegisterStartupScript(this.GetType(), "pop", newWin, true);
}
}
protected void gv_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
ImageButton img = (ImageButton)e.Row.FindControl("imgbtnEdit");
if (e.Row.Cells[2].Text.Equals("0"))
{
img.ImageUrl = "/aspnet/img/stop.gif";
img.Width = 18;
img.Height = 18;
img.Enabled = true;
img.OnClientClick = "";
img.Attributes["onclick"] = "if(!confirm('...')){return false;};";//open Default3.aspx
}
}
}