পৃষ্ঠাসমূহ

Search Your Article

CS

 

Welcome to GoogleDG – your one-stop destination for free learning resources, guides, and digital tools.

At GoogleDG, we believe that knowledge should be accessible to everyone. Our mission is to provide readers with valuable ebooks, tutorials, and tech-related content that makes learning easier, faster, and more enjoyable.

What We Offer:

  • 📘 Free & Helpful Ebooks – covering education, technology, self-development, and more.

  • 💻 Step-by-Step Tutorials – practical guides on digital tools, apps, and software.

  • 🌐 Tech Updates & Tips – simplified information to keep you informed in the fast-changing digital world.

  • 🎯 Learning Support – resources designed to support students, professionals, and lifelong learners.

    Latest world News 

     

Our Vision

To create a digital knowledge hub where anyone, from beginners to advanced learners, can find trustworthy resources and grow their skills.

Why Choose Us?

✔ Simple explanations of complex topics
✔ 100% free access to resources
✔ Regularly updated content
✔ A community that values knowledge sharing

We are continuously working to expand our content library and provide readers with the most useful and relevant digital learning materials.

📩 If you’d like to connect, share feedback, or suggest topics, feel free to reach us through the Contact page.

Pageviews

Thursday, February 9, 2017

Angular Material - Switches

The md-switch, an Angular directives is used to show a switch.

Attributes

S.N.Parameter & Description
1* ng-model
Assignable angular expression to data-bind to.
2name
Property name of the form under which the control is published.
3ng-true-value
The value to which the expression should be set when selected.
4ng-false-value
The value to which the expression should be set when not selected.
5ng-change
Angular expression to be executed when input changes due to user interaction with the input element.
6ng-disabled
En/Disable based on the expression.
7md-no-ink
Use of attribute indicates use of ripple ink effects.
8aria-label
Publish the button label used by screen-readers for accessibility. Defaults to the switch's text.

Example

The following example showcases the use of md-swipe-* showcase uses of swipe components.
am_switches.htm
<html lang="en" >
   <head>
      <link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/angular_material/1.0.0/angular-material.min.css">
      <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
      <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular-animate.min.js"></script>
      <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular-aria.min.js"></script>
      <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular-messages.min.js"></script>
      <script src="https://ajax.googleapis.com/ajax/libs/angular_material/1.0.0/angular-material.min.js"></script>
   <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
      <script language="javascript">
          angular
            .module('firstApplication', ['ngMaterial'])
            .controller('switchController', switchController);

          function switchController ($scope) {
             $scope.data = {
                switch1: true,
    switch2: false,
    switch3: false,
    switch4: true,
                switch5: true,
                switch6: false
             };
             $scope.message = 'false';
             $scope.onChange = function(state) {
                $scope.message = state;
             };
          }   
      </script>      
   </head>
   <body ng-app="firstApplication"> 
      <div id="switchContainer" ng-controller="switchController as ctrl" layout="column" ng-cloak>
         <md-switch ng-model="data.switch1" aria-label="Switch 1">
            Switch 1: {{ data.switch1 }}
         </md-switch>
         <md-switch ng-model="data.switch2" aria-label="Switch 2" ng-true-value="'true'" ng-false-value="'false'" class="md-warn">
            Switch 2 (md-warn): {{ data.switch2 }}
         </md-switch>
         <md-switch ng-disabled="true" aria-label="Disabled switch" ng-model="disabledModel">
            Switch 3 (Disabled)
         </md-switch>
         <md-switch ng-disabled="true" aria-label="Disabled active switch" ng-model="data.switch4">
            Switch 4 (Disabled, Active)
         </md-switch>
         <md-switch class="md-primary" md-no-ink aria-label="Switch No Ink" ng-model="data.switch5">
            Switch 5 (md-primary): No Ink
         </md-switch>
         <md-switch ng-model="data.switch6" aria-label="Switch 6" ng-change="onChange(data.switch6)">
            Switch 6 : {{ message }}
         </md-switch>    
      </div>
   </body>
</html>

Result

Verify the result.

No comments:

Post a Comment