想要为同一个按钮的2次点击启用两个不同的功能

时间:2016-09-22 04:52:49

标签: angularjs angularjs-ng-repeat

我有一个角度按钮,使用ng-repeat填充在表格中。

我的表是:

<div class="widget-content" ng-controller="getAllBenchersController">

                <table ng-table="talentPoolList" show-filter="true" class="table table-striped table-bordered">
                    <tr ng-repeat="employee in data | filter: testFilter">

                        <td data-title="'#'">{{$index + 1}}</td>
<td data-title="'Select Account'">
                            <select>
                                <option disabled selected value> -- select an option -- </option>
                                <option id="selectedLocked">Blocked</option>
                                <option id="selectedBilled">Billed<//option>
                                <option id="selectedShadow">Shadow</option>
                                <option id="selectedOnNotice">OnNotice</option>
                                <option id="selectedPOC">POC</option>
                            </select>
                        </td>

                        <td>
                            <a><button class="btn  btn-success">Reserve</button></a>
                        </td>

                    </tr>
                </table>

我还想隐藏页面加载时填充在表格中的下拉列表。 点击第一个按钮后,我希望显示下拉列表。 在第二次点击同一个按钮时,我需要运行另一个功能。

我是Angular的新手,并不知道如何实现这一目标。有人可以帮忙吗?

0 个答案:

没有答案