<div ng-controller="AppCtrl" class="md-padding" ng-cloak>
<div>
<fieldset class="standard">
<legend>Using <ng-model></legend>
<div layout-wrap layout-gt-sm="row" >
<div flex-gt-sm="50">
<md-checkbox ng-model="data.cb1" aria-label="Checkbox 1">
Checkbox 1: {{ data.cb1 }}
</md-checkbox>
</div>
<div flex-gt-sm="50">
<div>
<md-checkbox
ng-model="data.cb2"
aria-label="Checkbox 2"
ng-true-value="'yup'"
ng-false-value="'nope'"
class="md-warn md-align-top-left" flex>
Checkbox 2 (md-warn) <br/>
<span class="ipsum">
Duis placerat lectus et justo mollis, nec sodales orci congue. Vestibulum semper non urna ac suscipit.
Vestibulum tempor, ligula id laoreet hendrerit, massa augue iaculis magna,
sit amet dapibus tortor ligula non nibh.
</span>
<br/>
{{ data.cb2 }}
</md-checkbox>
</div>
</div>
<div flex-gt-sm="50">
<md-checkbox ng-disabled="true" aria-label="Disabled checkbox" ng-model="data.cb3">
Checkbox: Disabled
</md-checkbox>
</div>
<div flex-gt-sm="50">
<md-checkbox ng-disabled="true" aria-label="Disabled checked checkbox" ng-model="data.cb4" ng-init="data.cb4=true">
Checkbox: Disabled, Checked
</md-checkbox>
</div>
<div flex-gt-sm="50">
<md-checkbox md-no-ink aria-label="Checkbox No Ink" ng-model="data.cb5" class="md-primary">
Checkbox (md-primary): No Ink
</md-checkbox>
</div>
<div flex-gt-sm="50">
<md-checkbox md-indeterminate
aria-label="Checkbox Indeterminate" class="md-primary">
Checkbox: Indeterminate
</md-checkbox>
</div>
<div flex-gt-sm="50">
<md-checkbox md-indeterminate aria-label="Checkbox Disabled Indeterminate"
ng-disabled="true" class="md-primary">
Checkbox: Disabled, Indeterminate
</md-checkbox>
</div>
</div>
</fieldset>
</div>
</div>
.checkboxdemoBasicUsage div.flex-xs {
min-height: 40px; }
.checkboxdemoBasicUsage .checkboxDemo1 div {
clear: both; }
.checkboxdemoBasicUsage p {
padding-left: 8px; }
.checkboxdemoBasicUsage fieldset.standard {
border-style: solid;
border-width: 1px; }
.checkboxdemoBasicUsage legend {
color: #3F51B5; }
.checkboxdemoBasicUsage legend code {
color: #3F51B5;
font-weight: normal; }
.checkboxdemoBasicUsage .ipsum {
color: saddlebrown; }
<div ng-controller="AppCtrl" class="md-padding demo">
<div layout="row" layout-wrap>
<div flex="100" layout="column">
<div>
<!--
In IE, we cannot apply flex directly to <fieldset>
@see https://github.com/philipwalton/flexbugs#9-some-html-elements-cant-be-flex-containers
-->
<fieldset class="demo-fieldset" >
<legend class="demo-legend">Using <md-checkbox> with the 'indeterminate' attribute </legend>
<div layout="row" layout-wrap flex>
<div flex-xs flex="50">
<md-checkbox aria-label="Select All"
ng-checked="isChecked()"
md-indeterminate="isIndeterminate()"
ng-click="toggleAll()">
<span ng-if="isChecked()">Un-</span>Select All
</md-checkbox>
</div>
<div class="demo-select-all-checkboxes" flex="100" ng-repeat="item in items">
<md-checkbox ng-checked="exists(item, selected)" ng-click="toggle(item, selected)">
{{ item }}
</md-checkbox>
</div>
</div>
</fieldset>
</div>
</div>
</div>
angular.module('checkboxDemo3', ['ngMaterial'])
.controller('AppCtrl', function($scope) {
$scope.items = [1,2,3,4,5];
$scope.selected = [1];
$scope.toggle = function (item, list) {
var idx = list.indexOf(item);
if (idx > -1) {
list.splice(idx, 1);
}
else {
list.push(item);
}
};
$scope.exists = function (item, list) {
return list.indexOf(item) > -1;
};
$scope.isIndeterminate = function() {
return ($scope.selected.length !== 0 &&
$scope.selected.length !== $scope.items.length);
};
$scope.isChecked = function() {
return $scope.selected.length === $scope.items.length;
};
$scope.toggleAll = function() {
if ($scope.selected.length === $scope.items.length) {
$scope.selected = [];
} else if ($scope.selected.length === 0 || $scope.selected.length > 0) {
$scope.selected = $scope.items.slice(0);
}
};
});
.checkboxdemoSyncing .checkboxDemo1 div {
clear: both; }
.checkboxdemoSyncing legend {
color: #3F51B5; }
.checkboxdemoSyncing legend code {
color: #3F51B5;
font-weight: normal; }
.checkboxdemoSyncing p {
padding-left: 8px; }
.checkboxdemoSyncing .info {
padding-left: 13px; }
.checkboxdemoSyncing div.standard {
padding: 8px;
padding-left: 15px; }
.checkboxdemoSyncing fieldset.standard {
border-style: solid;
border-width: 1px;
height: 100%; }
Selected Items
[]
Powered by Google ©2014–2025.
Code licensed under the MIT License.
Documentation licensed under
CC BY 4.0.