如何为Cell设置100%的高度-ng2-smart-table

时间:2019-06-19 11:09:12

标签: html css angular ng2-smart-table

我在设置“自定义单元格”(文本区域)的最大高度时遇到问题。有没有人设法解决这个问题?我希望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;
}

enter image description here

0 个答案:

没有答案