0

我正在使用 ng-table 合并列

如果我想将表头与 ng-table 合并,

我搜索了 ng-table 的文档,但什么也没有,

我找到了 html 属性 cloumnspan ,但我想要合并表头,

</td>
<td data-title="'Funds'" sortable="funds" style="width: 150px; text-align: center">
    {{user.funds}}
</td>
<td data-title="'Funds'" sortable="funds" style="width: 150px; text-align: center">
    {{user.funds}}
</td>

但是 ng-table 上没有,我该怎么做才能合并标题?

请帮忙

4

1 回答 1

1

使用类似于他们在这里所做的 HTML:http: //www.w3.org/TR/html401/struct/tables.html用于名为“具有合并单元格的测试表”的结构

/-----------------------------------------\
|          |      Average      |   Red    |
|          |-------------------|  eyes    |
|          |  height |  weight |          |
|-----------------------------------------|
|  Males   | 1.9     | 0.003   |   40%    |
|-----------------------------------------|
| Females  | 1.7     | 0.002   |   43%    |
\-----------------------------------------/

将标题文本(没有高度或重量)的第二行保留为,但根据模型将数据绑定到列。

其他方法可能是通过合并模型中两个属性的数据来​​创建新属性,并在表中创建带有标题的单列。

希望这些想法对你有所帮助。谢谢。

于 2013-08-14T08:00:23.143 回答