0
我給複選框的網格,每當我嘗試點擊任何它總是通過在ng-click
名單,NG-殘疾人沒有工作
HTML
<tr ng-repeat="partecipant in current_event.partecipants">
<td class="user_cell"><font class="user_name">{{(partecipant}}</font><span class="arrow"></td>
<td class="checkbox_cell" ng-repeat="proposed_time in current_event.proposed">
<input type="checkbox" class="toggle" ng-checked="isChecked(partecipant, proposed_time)" ng-true-value="true" ng-false-value="false" ng-click="addResponse(partecipant, proposed_time)" ng-disabled="userProfile.webid != partecipant" name="thing" id="thing"><label for="thing">
</td>
</tr>
ng-checked
:做工精細,複選框被選中相應
ng-click
:不工作,它通過經常的第一個值proposed_time
ng-disabled
:不工作時,都啓用時,當userProfile.webid == partecipant
任何幫助表示讚賞,他們應該只啓用一行。提前致謝。
編輯
解決了!
錯誤發生在name="thing" id="thing"
,這使得複選框具有相同的名稱和ID,因此我將它們動態命名。
謝謝你的plunker,我會檢查出來,這與錯誤無關,這是爲了演示目的,我在後期編輯:) – mzereba