我想知道在使用GridView
或实体框架时我们如何在ObjectDataSource
标头内使用排序图像。因为它具有直接调用功能,并且还具有排序表达式。
那么,我如何使用GridView.RowCreated
事件并获取排序表达式来绑定排序图像?
答案 0 :(得分:5)
那是旧的ASP.NET 2.0天。 ASP.NET 4.0允许我们将其指定为asp:GridView
属性
MSDN链接
GridView标记
<SortedAscendingHeaderStyle CssClass="sortasc" />
<SortedDescendingHeaderStyle CssClass="sortdesc" />
CSS
.datatable th
{
font-size:12px;
font-weight:bold;
letter-spacing:0px;
text-align:left;
padding:2px 4px;
color:#333333;
border-bottom:solid 2px #bbd9ee;
}
.datatable th a
{
text-decoration:underline;
padding-right:18px;
color:#000;
}
.datatable th.sortasc a { background:url(../Images/asc.gif) right center no-repeat; }
.datatable th.sortdesc a { background:url(../Images/desc.gif) right center no-repeat; }
请注意asp:GridView
已分配CssClass="datatable"
。
您可能还想查看SortedAscendingCellStyle和SortedDescendingCellStyle
对于老式的方式,试试吧。 http://mattberseth.com/blog/2007/10/a_yui_datatable_styled_gridvie.html