Hi Oli,
I'm working on a selectable users from table A to table B, it should look like this:

I figured i could use tabulator with two tables and the drag & drop feature, it also makes the loading of the data very simple.
What I want to replicate is to not have a header with the descriptions. is there a way to achieve this with some custom configuration?.
Thanks in advance. Your tabulator has really come in handy.
Hey @cemmons
Tabulator is not designed to work without the column headers, but you could try using CSS to set the height of the .tabulator-header class to 0.
I hope that helps.
Cheers
Oli :)
Just confirming that seems to work.
.tabulator-header {
height: 0;
}
Thanks. It works.
Most helpful comment
Just confirming that seems to work.