Skip to content

Commit

Permalink
New test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
mlynch committed Sep 11, 2015
1 parent c8da275 commit 1868141
Show file tree
Hide file tree
Showing 2 changed files with 113 additions and 0 deletions.
33 changes: 33 additions & 0 deletions test/html/input-radio-basic.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<html ng-app="ionicApp">
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">

<title>Radio Buttons</title>

<link rel="stylesheet" href="../../dist/css/ionic.css">
<script src="../../../../dist/js/ionic.bundle.js"></script>
</head>

<body ng-controller="MainCtrl">

<ion-header-bar class="bar-positive">
<h1 class="title">Radio Buttons</h1>
</ion-header-bar>

<ion-content>
{{ formData }}
<div class="list">
<ion-radio ng-model="formData.color" ng-value="'red'" name="color">Red</ion-radio>
<ion-radio ng-model="formData.color" ng-value="'blue'" name="color">Blue</ion-radio>
<ion-radio ng-model="formData.color" ng-value="'yellow'" name="color">Yellow</ion-radio>
</div>
</ion-content>
<script>
angular.module('ionicApp', ['ionic'])
.controller('MainCtrl', function($scope) {
$scope.formData = {};
});
</script>
</body>
</html>
80 changes: 80 additions & 0 deletions test/html/input-radio-zarko.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
<html ng-app="ionicApp">
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">

<title>Radio Buttons</title>

<link href="//code.ionicframework.com/nightly/css/ionic.css" rel="stylesheet">
<script src="//code.ionicframework.com/nightly/js/ionic.bundle.js"></script>
</script>
</head>

<body ng-controller="MainCtrl">

<ion-header-bar class="bar-positive">
<h1 class="title">Radio Buttons</h1>
</ion-header-bar>

<ion-content>

<div class="list">

<div class="item item-divider">
Clientside, Selected Value: {{ data.clientSide }}
</div>

<ion-radio ng-repeat="item in clientSideList"
ng-value="item.value"
ng-model="data.clientSide">
{{ item.text }}
</ion-radio>

<div class="item item-divider">
Serverside, Selected Value: {{ data.serverSide }}
</div>

<ion-radio ng-repeat="item in serverSideList"
ng-value="item.value"
ng-model="data.serverSide"
ng-change="serverSideChange(item)"
name="server-side">
{{ item.text }}
</ion-radio>

</div>

</ion-content>

<script>

angular.module('ionicApp', ['ionic'])

.controller('MainCtrl', function($scope) {

$scope.clientSideList = [
{ text: "Backbone", value: "bb" },
{ text: "Angular", value: "ng" },
{ text: "Ember", value: "em" },
{ text: "Knockout", value: "ko" }
];

$scope.serverSideList = [
{ text: "Go", value: "go" },
{ text: "Python", value: "py" },
{ text: "Ruby", value: "rb" },
{ text: "Java", value: "jv" }
];

$scope.data = {
clientSide: 'ng'
};

$scope.serverSideChange = function(item) {
console.log("Selected Serverside, text:", item.text, "value:", item.value);
};

});
</script>
</body>
</html>

0 comments on commit 1868141

Please sign in to comment.