angularjs在行内重复表行 [英] angularjs repeat table rows inside rows

查看:66
本文介绍了angularjs在行内重复表行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经阅读了一些有关此主题的现有主题,我想我已经接近了,但可能需要一些帮助.我正在尝试显示采购订单的订单项.如果订单项数组中的行的inventId = 0,则我希望将有关该行的所有信息显示为单行.但是,如果inventId> 0,那么我想在标题"行和其余各列中将itemId,昵称和描述显示为与跟踪行类似的普通行.这是我当前的代码,其结尾是在每个矩阵"行上方重复的标题"行.

I've read a few existing threads on this topic and I think I'm close but I may need a bit of help. I'm trying to display line items for purchase orders. If the row in line items array has inventId=0 I want to display all the information about it as a single row. If, however, inventId > 0 then I want to display itemId, nickname and description in the "header" row and the rest of the columns as a normal row similar to the tracking row. Here is my current code that ends up with the "header" row repeated above each "matrix" row.

<table id="lineItemsTable"
       class="table table-bordered table-hover table-list scTable">
    <thead>
        <tr>
            <th>@Labels.itemId</th>
            <th>@Labels.nickname</th>
            <th>@Labels.description</th>
            <th>@Labels.ordered</th>
            <th>@Labels.cost</th>
            <th>@Labels.extension</th>
            <th>@Labels.price</th>
            <th>@Labels.margin</th>
            <th>@Labels.receiveLocation</th>
            <th>@Labels.received</th>
            <th>@Labels.remaining</th>
            <th>@Labels.vendorPartNo</th>
            <th>@Labels.upc</th>
        </tr>
    </thead>
    <tbody>
        <tr ng-repeat-start="result in crud.model.lineItems track by $index"
            ng-click="crud.selectedIndex=$index;"
            ng-class="{selected: $index === crud.selectedIndex}">
            <td>{{result.itemId}}</td>
            <td>{{result.item}}</td>
            <td>{{result.itemDescrip}}</td>
        </tr>
        <tr ng-repeat-end ng-if="result.inventId!==0">
            <td></td><td></td><td>{{result.inventoryDescrip}}</td>
        </tr>
    </tbody>
</table>

我正在附上我想使用lineItems数组实现的屏幕截图:

I'm attaching a screen shot of what I want to achieve using an array of lineItems:

推荐答案

以书面形式提出我的问题总是有帮助的.我一发布便想出了解决方案.我将rowNumber列添加到返回行项目的存储过程中,并仅在Rn = 1时显示该信息.

It always helps to put my question in writing. As soon as I posted it, I think I figured out a solution. I'll add rowNumber column into the stored procedure returning line items and will display that info only when Rn = 1.

尽管我无法使原始的奇数/偶数行变色,但我还是做到了.现在,所有标题"行看起来都是偶数,这可能是可以的.

I made it work although I could not make the original odd/even rows backcolor. Now all "header" rows look like even, which is probably an OK effect.

这篇关于angularjs在行内重复表行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆