Skip to content

Instantly share code, notes, and snippets.

@jmimi
Created June 29, 2016 07:50
Show Gist options
  • Save jmimi/7e10351fed541a2056b5a3d9b145d915 to your computer and use it in GitHub Desktop.
Save jmimi/7e10351fed541a2056b5a3d9b145d915 to your computer and use it in GitHub Desktop.
simple radio button
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
aggregation: null,
actions: {
change(){
Ember.Logger.debug(this.getProperties('aggregation'));
alert(this.getProperties('aggregation').aggregation);
}
}
});
<h1>Welcome to {{appName}}</h1>
<br>
<br>
<button {{action 'change'}}>Change</button>
<br/><br/>
{{input type="radio" name="aggregation" change=(action (mut aggregation) 'AVG') value='AVG'}}
{{input type="radio" name="aggregation" change=(action (mut aggregation) 'MAX') value='MAX'}}
{{outlet}}
<br>
<br>
{
"version": "0.10.1",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js",
"ember": "2.6.0",
"ember-data": "2.6.1",
"ember-template-compiler": "2.6.0"
},
"addons": {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment