javascript - Set default toggle to be checked in ion-toggle - Stack Overflow

Below is the code to list toggle buttons inwhich I want to set the first toggle button to be on and t

Below is the code to list toggle buttons in which I want to set the first toggle button to be on and the rest off..

<ion-view view-title="Choose language">
  <ion-content>
    <div class="list"> 
      <ion-toggle ng-repeat="item in lists" ng-model="item.checked"   
        ng-checked="item.checked">
        {{ item.name }}   
      </ion-toggle>
    </div>
  </ion-content>
</ion-view>

   $scope.lists= [
                { name: 'List1' },
                { name: 'List2' },
                { name: 'List3' },
            ];

I tried by giving $scope.item.checked='List1' but didn't work.Any possible solutions for this issue..

Below is the code to list toggle buttons in which I want to set the first toggle button to be on and the rest off..

<ion-view view-title="Choose language">
  <ion-content>
    <div class="list"> 
      <ion-toggle ng-repeat="item in lists" ng-model="item.checked"   
        ng-checked="item.checked">
        {{ item.name }}   
      </ion-toggle>
    </div>
  </ion-content>
</ion-view>

   $scope.lists= [
                { name: 'List1' },
                { name: 'List2' },
                { name: 'List3' },
            ];

I tried by giving $scope.item.checked='List1' but didn't work.Any possible solutions for this issue..

Share Improve this question asked May 31, 2016 at 13:04 forgottoflyforgottofly 2,72912 gold badges54 silver badges96 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 5

For the toggle to be always ON by default respective of the model:

<ion-toggle item-right (ionChange)="someMethod($event.checked)" checked="{{somebooleanmodel}}"></ion-toggle>

In your markup the item in the repeat is the object in the lists array.

Try this. Replace the $scope.lists by this object.

$scope.lists = [
    { name: "List1", checked: false },
    { name: "List2", checked: true },
    { name: "List3", checked: false }
  ];

Hope it helps.

For the toggle to be always ON by default irrespective of the model, set:

<ion-toggle ng-checked="true" ng-model="someModel">
  {{expression}}   
</ion-toggle>

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743670907a4487765.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信