kendo ui ツリーリストでは、headerTemplate は階層の最下位の列でのみ複数列に対して機能します。ルート列にはありません。
サンプル:
columns: [{
field: "FirstName", title: "First Name", width: 180
}, {
title: "Personal Info",
/* headerTemplate: "Personal Info Template", */ /* do not works */
columns: [{
field: "LastName", title: "Last Name", width: 120,
}, {
title: "Location",
columns: [{
field: "City", width: 140,
headerTemplate: "City Template", /* works */
}, {
field: "Country", width: 140
}]
}]
}]
サンプルリンク
複数列ヘッダーのルート列にボタン/htmlを配置するにはどうすればよいですか?