Skip to main content

Posts

Showing posts with the label radio button list in ng repeat angularjs

Radio button list in ng-repeat AngularJs

Hello everyone, I am going to share the code sample for display radio button list in angularjs ng-repeat with a default checked as given below The live demo link http://embed.plnkr.co/1JaEo7/preview The angularjs code-sample         var app = angular.module( "radioApp" , []);         app.controller( 'radioCtrl' , function ($scope, $rootScope) {             $scope.radii = [{                 price: '$10' ,                 checked: true ,                 name: "Messaging Value Packes"             }, {           ...