要在Angular Material表格中实现展开/折叠表格行的功能,你可以使用Angular指令和CSS样式来实现。下面是一个示例解决方法:
首先,创建一个名为table.component.html的HTML文件,其中包含Angular Material表格和展开/折叠行的按钮:
Name
{{row.name}}
Age
{{row.age}}
接下来,在table.component.ts文件中,定义数据源和展开/折叠行的逻辑:
import { Component } from '@angular/core';
@Component({
selector: 'app-table',
templateUrl: './table.component.html',
styleUrls: ['./table.component.css']
})
export class TableComponent {
dataSource = [
{ name: 'John Doe', age: 25, details: 'Lorem ipsum dolor sit amet.', expanded: false },
{ name: 'Jane Smith', age: 30, details: 'Consectetur adipiscing elit.', expanded: false },
{ name: 'Bob Johnson', age: 35, details: 'Sed do eiusmod tempor incididunt.', expanded: false }
];
displayedColumns = ['name', 'age', 'expand'];
isExpanded = (i: number, row: any) => row.expanded;
toggleRow(row: any) {
row.expanded = !row.expanded;
}
}
最后,为展开的行定义一个CSS样式(table.component.css):
.expanded-row {
background-color: lightgray;
padding: 10px;
}
在你的模块文件(例如app.module.ts)中导入和声明Angular Material模块,并将TableComponent添加到你的组件或模块中。
这样,当你点击展开/折叠按钮时,相应行的展开状态将切换,并且展开的行将显示附加的细节内容。