/ //
/// データ行バインディング イベント
/// //
>/ //
protected void gvProduct_RowDataBound(object sender, GridViewRowEventArgs e)
{
try
{
if (e .Row .RowType == DataControlRowType.DataRow )
{
GridViewRow row = e.Row;
CheckBox ckb = row.Cells[0].FindControl("ckb") as CheckBox; ProductID = row.Cells[0].FindControl("lblProductID") as Label;
//マウスが止まっているときに背景色を変更します
row.Attributes.Add("onmouseover", "this.style.backgroundColor) ='# 00A9FF'");
//マウスが離れたときに背景色を復元します
row.Attributes.Add("onmouseout", "gvProducts_onmouseout('" gvProducts.ClientID "','"ckb. ClientID "', this) ");
//マウスが離れたときに背景色を復元します
row.Attributes.Add("onclick", "SelectRadio('" gvProducts.ClientID "','" ckb) .ClientID "', '" ProductID.Text "',this) ");
ckb.Attributes.Add("onclick", "SelectRadio('" gvProducts.ClientID "','" ckb.ClientID "', '" ProductID.Text "',document.getElementById('" row.ClientID "')) ");
}
catch (例外例)
{
}
}