gpt4 book ai didi

javascript - 在 gridview 中突出显示选定的行而不回发

转载 作者:行者123 更新时间:2023-11-28 09:53:47 25 4
gpt4 key购买 nike

我在 asp.net 中有一个 gridview,只要单击它就会更新预览图片。这无需回发即可工作,我这样做:

protected void GridView1_RowCreated(object sender,System.Web.UI.WebControls.GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes["onmouseover"] = "this.style.cursor='pointer';this.style.textDecoration='underline';";
e.Row.Attributes["onmouseout"] = "this.style.textDecoration='none';";
e.Row.ToolTip = "Click to select row";
e.Row.Attributes["onclick"] = "RetrievePicture(" + GVmail.DataKeys[e.Row.RowIndex].Value.ToString() + ",this)";
}
}

但是,我希望用户能够看到选择了哪一行,从而显示图像..(所以我希望行保持突出显示)。然后当选择另一行时,我希望该行恢复正常并突出显示新选择的行。

如何在没有回发的情况下做到这一点?

最佳答案

看看

   for (int i = 0; i < gridview.Rows.Count; i++)
{
GridViewRow row;
row = gridview.Rows[i];
if (row.Cells[1].Text.Equals("ABSENT"))
{
row.BackColor = System.Drawing.Color.IndianRed;
row.ForeColor = System.Drawing.Color.White;
row.Font.Bold = true;
}
}

可能对你有帮助!!

关于javascript - 在 gridview 中突出显示选定的行而不回发,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10460960/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com