列菜单是Tabulator的一项重要功能,根据文档,应该可以将其添加到 any 列中。不幸的是,我无法将其添加到列组的标题中。我做错了还是不支持?下面的代码段演示了这种行为。除Group1之外的所有列均具有菜单。
如果不支持,我倾向于使用Tabulator - Add menu button to column header中的解决方案,但是在那儿我看不到一种方法来标识执行格式化程序时菜单所属的列组件,这是我所必需的需要根据列中的数据在动态创建的制表符和列中创建菜单项。
有什么建议吗?
<link href="https://unpkg.com/tabulator-tables@4.6.2/dist/css/tabulator.min.css" rel="stylesheet"/>
<script src="https://unpkg.com/tabulator-tables@4.6.2/dist/js/tabulator.min.js"></script>
<div id="example-table"/>
<script>
var headerMenu = [
{
label:"<i class='fas fa-eye-slash'></i> Hide Column",
action:function(e, column){
column.hide();
}
},
{
label:"<i class='fas fa-arrows-alt'></i> Move Column",
action:function(e, column){
column.move("col");
}
}
]
//initialize table
var table = new Tabulator("#example-table", {
height:"311px",
layout:"fitColumns",
columns:[
{title:"Group1", headerMenu:headerMenu, columns:[
{title:"Name", field:"name", headerMenu:headerMenu},
{title:"Progress", field:"progress", hozAlign:"right", sorter:"number", headerMenu:headerMenu},]
},
{title:"Gender", field:"gender", headerMenu:headerMenu},
{title:"Rating", field:"rating", hozAlign:"center", headerMenu:headerMenu},
{title:"Favourite Color", field:"col", headerMenu:headerMenu}, //add menu to this column header
],
});
</script>
答案 0 :(得分:0)
考虑了我的实际问题后,我发现将带有参数的链接添加到组列标题就足够了。我在原始示例中添加了此解决方案,以确保如果有人在同一问题中遇到问题,则以某种方式记录了该解决方案。可以在menuTitleFormatter
中非常容易地自定义链接或整个标题。
<link href="https://unpkg.com/tabulator-tables@4.6.2/dist/css/tabulator.min.css" rel="stylesheet" />
<script src="https://unpkg.com/tabulator-tables@4.6.2/dist/js/tabulator.min.js"></script>
<div id="example-table" />
<script>
var headerMenu = [{
label: "<i class='fas fa-eye-slash'></i> Hide Column",
action: function(e, column) {
column.hide();
}
},
{
label: "<i class='fas fa-arrows-alt'></i> Move Column",
action: function(e, column) {
column.move("col");
}
}
]
var menuTitleFormatter = function(cell, formatterParams, onRendered) {
var span = document.createElement('span');
span.innerHTML = `<a href="/page?param1=${formatterParams.param1}¶m2=${formatterParams.param2}" target="_blank">this_is_a_link</a>`;
var title = document.createElement("span");
title.innerHTML = cell.getValue();
title.appendChild(span); //add menu to title
return title;
}
var titleFormatterParams = {
param1: 'value1',
param2: 'value2'
};
//initialize table
var table = new Tabulator("#example-table", {
height: "311px",
layout: "fitColumns",
columns: [{
title: "Group1",
headerMenu: headerMenu,
titleFormatter: menuTitleFormatter,
titleFormatterParams: titleFormatterParams,
columns: [{
title: "Name",
field: "name",
headerMenu: headerMenu
},
{
title: "Progress",
field: "progress",
hozAlign: "right",
sorter: "number",
headerMenu: headerMenu
},
]
},
{
title: "Gender",
field: "gender",
headerMenu: headerMenu
},
{
title: "Rating",
field: "rating",
hozAlign: "center",
headerMenu: headerMenu
},
{
title: "Favourite Color",
field: "col",
headerMenu: headerMenu
}, //add menu to this column header
],
});
</script>
答案 1 :(得分:0)
从Tabulator 4.7开始,使用 headerMenu 选项内置了标题菜单功能。
//define row context menu
var headerMenu = [
{
label:"Hide Column",
action:function(e, column){
column.hide();
}
},
]
//add header menu in column definition
var table = new Tabulator("#example-table", {
columns:[
{title:"Name", field:"name", width:200, headerMenu:headerMenu}, //add menu to this column header
]
});
查看Menu Documentation,了解有关如何使用此新功能的完整详细信息