Tabulator: Fixed Columns can be set?

Created on 20 Oct 2016  路  6Comments  路  Source: olifolkerd/tabulator

Hi,

Is possible to set Fixed Columns ?

Most helpful comment

This feature is now available!!!

You can use the frozen property in a column definition object to freeze a column:

$("#example-table").tabulator({
    [
        {title:"Name", field:"name", frozen:true}, //frozen column on left of table
        {title:"Age", field:"age"},
        {title:"Eye Colour", field:"eyes"},
    ]
});

Full documentation can be found here

Let me know if you have any questions.

Cheers

Oli

All 6 comments

If you want to fix column widths you can set the _width_ parameter in the column definition array:

$("#example-table").tabulator({
    columns:[ //Define Table Columns
        {title:"Name", field:"name", width:150},
    ],
});

The width parameter will take a width in pixels.

Sorry, but I mean a left Columns that stay fixed while horizontal scrolling.

At present this is not possible, though it is a great idea, i will have a look at adding it in a future release.

For the time being you might be able to do something with CSS using fixed positioning on the columns you want frozen and margins to keep everything else in line,

You could also add your own custom element to the side of the table, style to look like tabulator (use the tabulator-row classes etc...), and then use the _rowFormatter_ callback to create rows inside this element as they are created inside the table

This feature is now available!!!

You can use the frozen property in a column definition object to freeze a column:

$("#example-table").tabulator({
    [
        {title:"Name", field:"name", frozen:true}, //frozen column on left of table
        {title:"Age", field:"age"},
        {title:"Eye Colour", field:"eyes"},
    ]
});

Full documentation can be found here

Let me know if you have any questions.

Cheers

Oli

Tested, work is perfect!
Very useful in big row data.

Thank you.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

Manbec picture Manbec  路  3Comments

andreivanea picture andreivanea  路  3Comments

yaxino picture yaxino  路  3Comments

mindcreations picture mindcreations  路  3Comments

KES777 picture KES777  路  3Comments