gpt4 book ai didi

css - pdatatable 中的内表 - 列的宽度不相等

转载 作者:行者123 更新时间:2023-11-28 12:03:24 25 4
gpt4 key购买 nike

我有一个 pdatatable,在行扩展器模板中有一个内表。但是内表列的宽度不相等。屏幕截图已附在下面。第一列(名称)右侧还有更多列,除非我调整列的大小,否则这些列是不可见的。但你不能期望每个用户都这样做。 enter image description here

谁能告诉我为什么会这样。

模板-->

    <p-dataTable [value]="tableData" [rows]="rows" [paginator]="paginate" [resizableColumns]="true" tableStyleClass="table-wrap" [rowsPerPageOptions]="[5,10,20]" expandableRows="{{setExpander}}">
<p-column *ngIf="setExpander" expander="true" styleClass="expander-icon-col"></p-column>
<div *ngFor="let col of tableOptions.columns">
<p-column *ngIf="col.field" [field]="col.field" [header]="col.header" [sortable]="col.sortable" [filter]="col.filter" [editable]="col.editable" [filterPlaceholder]="col.filterPlaceholder">
</p-column>
</div>
<template let-col let-index="rowIndex" pTemplate="rowexpansion" *ngIf="setExpander">
<p-dataTable [value]='subTableData[col[subTableOptions.mapperKey]]' [paginator]="paginate" [rows]='rows' [resizableColumns]="true" [rowsPerPageOptions]="[5,10,20]">
<div *ngFor="let colum of subTableOptions.columns">
<p-column *ngIf="colum.field" [field]="colum.field" [header]="colum.header" [sortable]="colum.sortable" [filter]="colum.filter" [filterPlaceholder]="colum.filterPlaceholder"></p-column>

</div>
</p-dataTable>
</template>
</p-dataTable>

最佳答案

我能够解决这个问题。这是由于一些CSS问题。 Primeng 正在添加一个 css table-layout:fixed 到 inner table ,将其更改为自动修复问题。

关于css - pdatatable 中的内表 - 列的宽度不相等,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43317068/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com