env-selector.html 682 Bytes
Newer Older
lepdou committed
1
<table class="table table-hover" style="width: 250px">
2 3 4 5 6 7 8 9 10
    <thead>
    <tr>
        <td><input type="checkbox" ng-checked="envAllSelected" ng-click="toggleEnvsCheckedStatus()"></td>
        </td>
        <td>环境</td>
        <td>集群</td>
    </tr>
    </thead>
    <tbody>
lepdou committed
11
    <tr style="cursor: pointer" ng-repeat="cluster in clusters" ng-click="toggleClusterCheckedStatus(cluster)">
12
        <td width="10%"><input type="checkbox" ng-checked="cluster.checked"
lepdou committed
13
                               ng-click="switchSelect(cluster, $event)"></td>
14 15 16 17 18
        <td width="30%" ng-bind="cluster.env"></td>
        <td width="60%" ng-bind="cluster.name"></td>
    </tr>
    </tbody>
</table>