知识大全 gridview行颜色渐变
Posted 知
篇首语:熟读唐诗三百首,不会作诗也会吟。本文由小常识网(cha138.com)小编为大家整理,主要介绍了知识大全 gridview行颜色渐变相关的知识,希望对你有一定的参考价值。
行之间颜色间隔:
gridview <AlternatingRowStyle ForeColor= #ffffff BackColor= #ECECEC />
datalist/datagrid <AlternatingItemStyle ForeColor= #ffffff BackColor= #ECECEC />
鼠标滑过颜色变化
gridview
代码
protected void GridView _RowDataBound(object sender GridViewRowEventArgs e)
if (e Row RowType == DataControlRowType DataRow)
e Row Attributes Add( onmouseover currentColor=this style backgroundColor;this style backgroundColor= #E D );
e Row Attributes Add( onmouseout this style backgroundColor=currentColor );
//单击行改变行背景颜色
e Row Attributes Add( onclick this style backgroundColor= 颜色 ; lor= buttontext ;this style cursor= default ; );
datagird:
代码
protected void dgValueInfo_ItemDataBound(object sender DataGridItemEventArgs e)
if (e Item ItemIndex != )
e Item Cells[ ] Text = (e Item ItemIndex + ) ToString();
ListItemType itemType = e Item ItemType;
if (itemType == ListItemType Item)
e Item Attributes Add( onmouseover e=this style backgroundColor; this style backgroundColor= #FBF F );
e Item Attributes Add( onmouseout this style backgroundColor=e );
datalist:
这个用类似上面的方式好像没有效果 所以可以考虑在页面去实现
代码
<asp:DataList ID= dlMain runat= server >
<AlternatingItemStyle ForeColor= #ffffff BackColor= #ECECEC />
<HeaderTemplate>
<asp:Table ID= tabHeader runat= server CssClass= gridviewHead >
<asp:TableRow CssClass= Header >
<asp:TableCell CssClass= gridviewHead >序号 </asp:TableCell>
</asp:TableRow>
</asp:Table>
</HeaderTemplate>
<ItemTemplate>
<asp:Table ID= tabItem runat= server CssClass= GridTableTDCenter >
<asp:TableRow onmouseover= currentColor=this style backgroundColor;this style backgroundColor= #FBF F onmouseout= this style backgroundColor=currentColor>
<asp:TableCell CssClass= GridTableTDCenter ><#Container ItemIndex+ %></asp:TableCell>
</asp:TableRow>
</asp:Table>
</ItemTemplate>
</asp:DataList>
cha138/Article/program/net/201311/11310相关参考
在GridView中鼠标滑过时改变背景颜色 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧! 在Gr
自动填充固定行数的GridView 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧! 在有些开发实践
重写render利用ClientScript在客户端注册select回发到服务器触发服务器端的行选择事件 protectedoverridevoidRender(HtmlTextWriterwr
为GridView的行添加鼠标经过、点击的事件。 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧!&n
知识大全 GridView中获取被点击行中的DropDownList和TextBox中的值
GridView中获取被点击行中的DropDownList和TextBox中的值 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容
渐变显示渐变消失的特殊效果在使用中还是比较常见的本文简单的实现了一个大家如何需要可以参考下 以下是渐变的js代码(表示多余三行的要隐藏点击"more"显示剩下的点击“less”要逐渐隐藏
GridView中的超链接 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧! GridView中的超
非常漂亮的一个菜单脚本代码也不复杂用透明渐变来实现渐变的速度可调制作方法在页面<head>~</head>中加入代码<SCRIPTlanguage=javascript&
在GridView_RowCommand中获取主键的值 protectedvoidGridView_RowCommand(objectsenderGridViewCommandEventArgs
GridView控件编程的事件 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧! PageIndex