すべての閲覧データを取得することchrome browser
を選択した場合、誰もがこれに気付いていたと思います. History
特定の行にマウスを合わせるcheck box
と、ボタンが表示され、ボタンが有効になっていることを選択すると、このタイプのシナリオを実行する方法
質問する
827 次
3 に答える
1
チェックボックスを display:none に設定してから、これを試してください
protected void RecordsGrid_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes.Add("onmouseover","checkbox.style.display='block'");
e.Row.Attributes.Add("onmouseout", "checkbox.style.display='none'");
}
}
于 2012-04-14T07:15:48.493 に答える
0
@User: こんにちは、行を強調表示する次のリンクの j クエリを使用してチェック ボックスを表示できますが、同じファンダを使用してチェック ボックスを表示し、ボタンも表示できます。
http://www.dotnetcurry.com/ShowArticle.aspx?ID=250
http://jquerybyexample.blogspot.com/2011/06/highlight-row-on-mouseover-in-gridview.html
于 2012-04-14T10:42:05.967 に答える
0
これを試して
$(function(){
$("#gridviewname tr").live("hover",function(){
$(this).find("input[id*='chkName']").show();
},
function(){
$(this).find("input[id*='chkName']").hide();
});
$("#gridviewname tr").live("click",function(){
if($(this).find("input[id*='chkName']").attr("checked"))
{
$(this).find("input[id*='chkName']").removeAttr("checked");
$(this).find("input[id*='chkName']").hide();
}
else
{
$(this).find("input[id*='chkName']").attr("checked",true);
$(this).find("input[id*='chkName']").show();
}
});
});
于 2012-04-16T10:18:54.083 に答える