如何更改Kendo网格中列标题中的字体

时间:2014-12-20 07:08:34

标签: kendo-ui kendo-grid

我有一个Kendo网格,我想更改列标题中的字体。代码是,

<% Html.Kendo().Grid<FlightCenterWeb.Models.SalesViewModel>()
.Name("Sales")
.TableHtmlAttributes(new { style = "font-size:9pt;" })
.HtmlAttributes(new { style = "height:400px" })
...
.Columns(columns =>
{
columns.Bound(a => a.SalesId)
.HeaderHtmlAttributes(new { style = "font-size:12pt;" })
.Width(50);
...
}).Render();
%>

但它不起作用。我需要帮助。感谢。

0 个答案:

没有答案