是否可以为 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>