문제

"nofollow"> http://stevendavisphoto.com/mc/

모든 코드가 있습니다.그룹이있을 때 "표시 할 그룹이 표시되지 않음"이라는 TR을 숨기려고합니다.

<tr ng-hide="groups.length">
     <td colspan="7">No groups to display</td>
</tr>
.

도움이 되었습니까?

해결책

를 사용해보십시오
<tr ng-hide="groups.length === 0">
     <td colspan="7">No groups to display</td>
</tr>
.

ng-hide 및 ng-show는 부울 속성

입니다.

ng-show 또는 ng-hide

ng-hide="groups.length === 0"
.

편집

다른 멤버, OP 솔루션

에 대한 아래의 댓글을 살펴보십시오.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top