0

是否可以为 Angular 的剑道网格中的每个数据项呈现两行?网格非常窄,我们需要对每个数据项进行文本描述,在额外的列中没有空格。

例子:

<table border=1>
  <tr>
    <th>ID</th>
    <th>Name</th>
  </tr>
  <tr>
    <td>1</td>
    <td>John</td>
  </tr>
  <tr>
    <td colspan="2">This is the first employee.</td>
  </tr>
  <tr>
    <td>2</td>
    <td>Jane</td>
  </tr>
  <tr>
    <td colspan="2">This is the second employee.</td>
  </tr>
</table>

4

1 回答 1

0

我最终使用详细信息行模板来添加文本描述。默认情况下,详细信息行在组件中展开。

于 2019-12-05T20:17:05.410 回答