Skip to content

Instantly share code, notes, and snippets.

@rinoldsimon
Last active April 20, 2019 06:39
Show Gist options
  • Save rinoldsimon/5742fb40a3eb523f11f621f794020531 to your computer and use it in GitHub Desktop.
Save rinoldsimon/5742fb40a3eb523f11f621f794020531 to your computer and use it in GitHub Desktop.
checkbox example
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'checkbox example',
actions: {
setProperty() {
// toggle the property on click
this.toggleProperty("my_property");
alert("checkbox value: "+this.get('my_property')); // returns true or false based on the checked value
}
}
});
<h1>{{appName}}</h1>
<br>
<br>
{{input type="checkbox" checked=my_property click=(action "setProperty")}}
<br>
Print checkbox value: {{my_property}}
<br>
<br>
{
"version": "0.15.1",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js",
"ember": "3.4.3",
"ember-template-compiler": "3.4.3",
"ember-testing": "3.4.3"
},
"addons": {
"ember-data": "3.4.2"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment