Ionic js four: check box

Source: Internet
Author: User

The Ionic check box (checkbox) is not the same as a normal HTML check box, and the following example shows an app that ionic check box Ion-checkbox.

<ng-model= "isChecked"> check box label </ion-checkbox >

instance, the checked value is modified according to whether the check box is selected, True is checked, and false is unchecked.
HTML Code

<Ion-header-barclass= "Bar-positive">  <H1class= "title">check box</H1></Ion-header-bar>         <ion-content>    <Divclass= "List">        <Ion-checkboxng-repeat= "Item in Devlist"Ng-model= "item.checked"ng-checked= "item.checked">{{Item.text}}</Ion-checkbox>        <Divclass= "Item">      <DivNg-bind= "Devlist | json"></Div>     </Div>        <Divclass= "Item Item-divider">Notifications</Div>        <Ion-checkboxNg-model= "pushnotification.checked"Ng-change= "Pushnotificationchange ()">Push Notifications</Ion-checkbox>        <Divclass= "Item">      <DivNg-bind= "Pushnotification | json"></Div>     </Div>        <Ion-checkboxNg-model= "Emailnotification"Ng-true-value= "' Subscribed '"Ng-false-value= "' unubscribed '">Newsletter</Ion-checkbox>    <Divclass= "Item">      <DivNg-bind= "Emailnotification | json"></Div>     </Div>      </Div>  </ion-content>

JavaScript Code

Angular.module (' starter ', [' Ionic ']). Run (function($ionicPlatform) {$ionicPlatform. Ready (function() {  //Hide the Accessory Bar by default (remove this to show the accessory bar above the keyboard  //For form inputs)  if(Window.cordova &&window.cordova.plugins.Keyboard) {Cordova.plugins.Keyboard.hideKeyboardAccessoryBar (true); }  if(window.  StatusBar) {statusbar.styledefault (); }});}). Controller (' Actionsheetctl ', [' $scope ',function($scope) {$scope. devlist=[{text:"HTML5", checked:true}, {text:"CSS3", checked:false}, {text:"JavaScript", checked:false }    ]; $scope. Pushnotificationchange=function() {Console.log (' Push Notification Change ', $scope. pushnotification.checked);    }; $scope. Pushnotification= {checked:true }; $scope. Emailnotification= ' subscribed ';}])

CSS Code

{  cursor: url (' http://www.runoob.com/try/demo_source/finger.png '), Auto;}

?

?

Ionic js four: check box

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.