gpt4 book ai didi

javascript - 是否可以为可树线设置不同的高度?

转载 作者:太空宇宙 更新时间:2023-11-04 09:48:58 27 4
gpt4 key购买 nike

尝试通过 Webix Treetable 获得此信息。我只能设置固定的 rowHeight 属性。所以在这里我面临两个问题:

  • 行高
  • “加号”图标的位置(始终在顶部)

当前树表配置是

rowHeight:100, rowLineHeight:34,
columns:[{
id:"value",
template:"{common.treetable()} #value#",
fillspace:true
}],

代码示例:http://webix.com/snippet/23a6b79f

最佳答案

你可以在数据中使用 $height 属性,就像在例子中一样。如果你远程加载数据,你显然可以传递它。

webix.ui({
view:"treetable",
rowHeight:100, rowLineHeight:34,
columns:[{
id:"value",
template:"{common.treetable()} #value#",
fillspace:true
}],
data: [{
id:1,
$height:30,
value:"Root",
open:true,
data:[{
id:"11",
value:"Text 1<br>Text 2<br>Text 3",
data:[
{ id:"111", value:"Should be small too", $height:30}
]
}]
}]
});

http://webix.com/snippet/59a17d61

关于javascript - 是否可以为可树线设置不同的高度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39256212/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com