I am trying to replace the header gradient on a grid on just one page, but my changes have had no effect.
Using FireFox's Firebug I can see that the CSS rule has been overridden, but there is no visible change.
Using FireFox's Firebug I can see that the CSS rule has been overridden, but there is no visible change.
<
style
type
=
"text/css"
>
.k-grid-header {
background-image: url("@Url.Content("~/Images/gridheader.png")");
background-repeat: repeat-x;
}
</
style
>
@(Html.Kendo().Grid<
Product
>().Name("ProductsGrid").Columns(c =>
{
c.Bound(p => p.Name);
c.Bound(p => p.Id);
})
.DataSource(d => d
.Ajax()
.Read(r => r.Action("GetProducts", "Data"))
)
)