欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

Kendo UI:Grid中标题css样式设置_html/css_WEB-ITnose

程序员文章站 2022-06-05 20:09:01
...
问题

Grid表格的标题样式怎么设置?

解决方案

使用headerAttributes属性设置,如果有css中class属性,需要加双引号””.如

{    field: "name",    headerAttributes: {      "class": "table-header-cell",      style: "text-align: right; font-size: 14px"    }  }