4

我的应用程序中有剑道树视图,我只想应用剑道树视图父节点的样式。如何为树视图的父节点应用字体粗体等样式?我的树视图代码是

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

4

1 回答 1

6

尝试在脚本中配置它。

  .k-top.k-bot {font-weight: bold;}
于 2013-03-26T08:27:53.197 回答