如何仅为Kendo treeview父节点应用样式

时间:2013-03-22 06:12:20

标签: css kendo-treeview

我的应用程序中有kendo树视图,我想仅为kendo树视图父节点应用样式。如何为树视图的父节点应用Font weight-bold等样式? 我的树视图代码是

var tree= $("#treeview").kendoTreeView({
  checkboxes: {
    checkChildren: true
  },
  dataSource: [{        
     id: 2, text: "select all", expanded: true,
     items: [
        { id: 3, text: "ABH" },
        { id: 4, text: "VFG" },
        { id: 5, text: "VFGT" },
        { id: 6, text: "GTYUJ" },
        { id: 7, text: "GHJ" }
     ]
   }]
 }).data("kendoTreeView");

这是JSfiddle

1 个答案:

答案 0 :(得分:6)

尝试在脚本中配置它。

  .k-top.k-bot {font-weight: bold;}