Freeze Grid view header (odoo V12)

356 Views Asked by At

I have grid view and I want to freeze header of Grid. Can you please guide me for this

enter image description here

1

There are 1 best solutions below

1
Terrence Poe On

there are some free third party apps in odoo app store.
you can try this.


Thank you for you response But I am looking for Grid view.

use css file, then open browser's developer tool, just find header block's class_name or id, and use position:fixed; to stick it.

.your_header{
    position:fixed;
}

For example: notice the style filter at lower left corner.

enter image description here