Is it possible to control the positioning of the input 'list' element used in a headerFilter with Tabulator 5.5.2?
I created a very basic example on codepen:
new Tabulator(document.getElementById("Table"), {
layout: "fitColumns",
columns: [
{
title: "Number",
field: "number"
},
{
title: "Letter",
field: "letter",
headerFilter: "list",
headerFilterFunc: "in",
headerFilterParams: {
values: ["A", "B", "C", "D"],
multiselect: true,
clearable: true
}
}
],
data: data
});
The list input is off the screen...

Is it possible to control the positioning of the input 'list' element used in a headerFilter with Tabulator 5.5.2?
I created a very basic example on codepen:
The list input is off the screen...
