Creating multirow table headers

后端 未结 4 1483
误落风尘
误落风尘 2021-01-05 13:42

I have a table where my column headers are set with the following instruction :

table.setColumnHeader

I wonder how can I create multilevel

4条回答
  •  走了就别回头了
    2021-01-05 14:16

    In Vaadin7 you can set the table header height dynamically by adding following CSS rule to your theme:

      .v-table-header-wrap {
        height: auto;
      }
    

    The only think is that the column separator is not set to 100% of the header row height ...

提交回复
热议问题