gpt4 book ai didi

angular-material - 如何从 ag-grid 单元格打开模态对话框单击 Angular 6

转载 作者:行者123 更新时间:2023-12-05 06:26:35 25 4
gpt4 key购买 nike

想要在单击详细信息图标时打开一个垫对话框。但问题是 this 不是指类。它指的是当前网格。

    constructor(private dialog: MatDialog) {}

ngOnInit() {
this.gridOptions = <GridOptions>{
rowSelection: 'multiple',
floatingFilter: true
};

this.gridOptions.columnDefs = [
{
headerName: 'Detail', field: '', filter: false, width: 80,
sortable: false,
onCellClicked: this.openModal,
cellRenderer: (data) => {
return `<mat-icon class="mat-icon material-icons" style="cursor:pointer;" aria-hidden="true">
keyboard_capslock</mat-icon>`;
}
},
{ headerName: 'Field Name', field: 'fieldName'}
];

openModal(row): void {
const detailRef = this.dialog.open(DetailComponent, {
height: '100vw',
width: '80vh',
direction: 'ltr',
data: {
record: row.data
}
});
Error: Unable to get property 'open' of undefined or null reference

这里指的是 Grid 而不是类。

如何引用类方法打开对话框?

最佳答案

内联 cellRenderer 只能用于简单的情况。如果需要使用内部函数或连接第三方库,则必须写成custom cell renderer component。 .

关于angular-material - 如何从 ag-grid 单元格打开模态对话框单击 Angular 6,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55977836/

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