div.ivu-table-wrapper.custom-table-header(style="width:100%;overflow:hidden;")
div.ivu-table
div.ivu-table-header(:style="{width:width+'px'}")
table(style="width:0")
colgroup
col(v-for="(obj,$index) in columnsWidth" :width="getColWidth(obj,$index)")
thead
tr(v-for="row in rows")
th(v-for="col in row" :colspan="col._colspan" :rowspan="col._rowspan" :style="{textAlign:col.align || 'center'}")
div.ivu-table-cell
span(v-if="col.type!=='selection'") {{col.title}}
Checkbox(v-else v-model="all")
div.fixed-header.fixed-header-left(v-if="fixedLeftWidth" :style="{width:fixedLeftWidth+'px'}")
div.ivu-table-header(:style="{width:width+'px'}")
table(style="width:0")
colgroup
col(v-for="(obj,$index) in columnsWidth" :width="getColWidth(obj,$index)")
thead
tr(v-for="row in rows")
th(v-for="col in row" :colspan="col._colspan" :rowspan="col._rowspan" :style="{textAlign:col.align || 'center'}")
div.ivu-table-cell
span(v-if="col.type!=='selection'") {{col.title}}
Checkbox(v-else v-model="all")
div.fixed-header.fixed-header-right(v-if="fixedRightWidth" :style="{width:fixedRightWidth+'px'}")
div.ivu-table-header(:style="{width:width+'px'}")
table(style="width:0")
colgroup
col(v-for="(obj,$index) in columnsWidth" :width="getColWidth(obj,$index)")
thead
tr(v-for="row in rows")
th(v-for="col in row" :colspan="col._colspan" :rowspan="col._rowspan" :style="{textAlign:col.align || 'center'}")
div.ivu-table-cell
span(v-if="col.type!=='selection'") {{col.title}}
Checkbox(v-else v-model="all")