我的css文件如下所示:
#productGrid .k-grid-header .k-header
{
background-color: blue;
color: white !important;
}
这适用于背景颜色,但不适用于字体颜色!
我的网格代码如下所示:
@(Html.Kendo().Grid<ProductSummary>()
.Name("productGrid")
.Columns(columns =>
{
columns.Bound(c => c.Product);
columns.Bound(c => c.Quantity);
columns.Bound(c => c.Value).ClientTemplate("£#= kendo.toString(Value, \"n2\") #");
columns.Bound(c => c.Percentage).Title("%");
})
.HtmlAttributes(new { style = "height: 550px;" })
.Scrollable()
.Sortable()
.DataSource(dataSource => dataSource
.Ajax()
.Read(read => read.Action("Products_Read", "Products", new { region = ViewBag.regions[Model.RegionPos].Value }))
)
答案 0 :(得分:0)
我的同事帮助我解决了这个问题。事实证明,标题实际上是一个超链接。
gtk+3