Components


Multiselect Dropdown


<ng-simple-multiselect-dropdown ng-model="filtered_status" options="options" ng-change="updateStatuses()" dropdown-text="'Dropdown with multiple options'"></ng-simple-multiselect-dropdown>
$scope.options = 
[ 
	{label: 'Not Multiselectable', value: 1, multiselectable: false}, 
	{label: 'Multiselectable Option 1', value: 2}, 
	{label: 'Multiselectable Option 2', value: 3}, 
	{label: 'Multiselectable Option 3', value: 4} 
];
$scope.filtered_status = [];
$scope.updateStatuses = function () { console.log('ctrl', $scope.filtered_status); }

Options Array


Draggable Dropdown


<ng-simple-draggable-toggle-button ng-model="toggleModel" ng-change="doSomething()" on-color="onColor" off-color="offColor"></ng-simple-draggable-toggle-button>
$scope.toggleModel = false;
$scope.onColor = '#2196F3';
$scope.offColor = '#848484';
$scope.doSomething = function () { console.log('ctrl', $scope.toggleModel); }

Dual Progress Bar

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.