我在设置“自定义单元格”(文本区域)的最大高度时遇到问题。有没有人设法解决这个问题?我希望textarea具有所有的td大小
@Component({
template: `<textarea class="form-control" style="width: 100%; height: 100%; background-color: white" readonly>{{value}}</textarea>`,
})
export class SmartTableTextareaComponent implements ViewCell {
@Input() value: any;
@Input() rowData: any;
}