获取数据表的每一行都有输入类型文本

时间:2016-05-02 10:07:51

标签: angularjs datatable

我想从angularjs的数据表中获取每一行,并从输入类型文本中获取访问值。并进一步处理。我在这里填充一个JSON数组中的项目名称。

enter image description here

我想在点击保存按钮时保存此订单。但是如何获得每行进一步处理的数量字段值?

我的html文件代码:

<table datatable class="table table-striped table-bordered">
    <thead>
        <tr>
            <th>Sr.No</th>
            <th>Item</th>
            <th>Quantity</th>
            <th>Price</th>
        </tr>
    </thead>
    <tbody>
        <tr data-ng-repeat="item in items">
            <td>{{$index + 1}}</td>
            <td>{{item.name}}</td>
            <td>
                <input type="text" />
            </td>
            <td>{{item.price}}</td>
        </tr>
    </tbody>
</table>

0 个答案:

没有答案