Skip to content
Snippets Groups Projects

Table fixed header in Odoo

  • Clone with SSH
  • Clone with HTTPS
  • Embed
  • Share
    The snippet can be accessed without any authentication.
    Authored by Sebastian Kennedy

    Esto es para Casquete

    table_fixed_header.css 238 B
    //.table
    
    .thead .tr .tfoot {
        display: table;
        table-layout: fixed;
        width: 100%;
    }
    
    .tbody {
        overflow: auto;
        width: 100%;
        display: block;
        height: 100px; // It needs to be fixed with px to make scrollbar appear
    }
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment