Header 过滤 - 使用向下箭头创建 Select 字段

Header filtering - create Select field with down arrow

我正在使用 Tabulator 5.x。我有一个 table 和 header 过滤。有问题的列是最后一列“已转录”。有没有办法让 select 框右侧的典型向下箭头向最终用户显示它是一个下拉列表,类似于您在 html 中使用选项?而不是必须单击它的筛选字段来查看选项。

我查看了文档,但没有看到任何使用向下箭头的示例。我也查看了 CSS,但如果它确实存在,我什么也没做。


var table = new Tabulator("#transcription-table", {
height:"640px",
layout:"fitDataStretch",
ajaxURL:"get_transcriptions.php",
columns:[
    {title:"ID", field:"id", headerSort:false, visible:false},       
    {title:"Song Title", field:"songtitle", width:350, sorter:"string", headerFilter:"input"},
    {title:"Artist / Group", field:"artistgroup", widthGrow:1.5 ,sorter:"string", headerFilter:"input"},

    {title:"Transcribed", field:"transcribed", widthGrow:1.2, sorter:"string", headerTooltip:"Transcribed into music notation", editor:"select", editorParams:{values:{"Yes":"Yes", "No":"No"}}, headerFilter:true, headerFilterParams:{values:{"Yes":"Yes", "No":"No", "":""}}},
    
    ]
});

谢谢。

您可以通过将编辑器模块扩展为

来创建自己的编辑器
Tabulator.extendModule("edit", "editors", {
  selectwithdrop: function (cell, onRendered, success, cancel, editorParams) {
      var cellValue = cell.getValue().toUpperCase(),
            input = document.createElement("select");

        Object.keys(editorParams.values).forEach((key) => {
          let option = document.createElement("option");
          option.text = editorParams.values[key];
          option.value = key;
          input.add(option);
      });

      input.style.padding = "10px";
      input.style.width = "100%";
      input.style.boxSizing = "border-box";
      input.style.border = "1px solid #4b4b4b";
      input.style.borderRadius = "5px";
      input.style.outline = "none";

      input.value = cellValue;

      // onRendered(function () {
      //    input.focus();
      //    input.style.height = "100%";
      // });

      function onChange(e) {
          success(input.value);
      }

      //submit new value on blur or change
      input.addEventListener("change", onChange);
      // input.addEventListener("blur", onChange);

      //submit new value on enter

      return input;
  },
});

工作演示CodeSandBox