Skip to content

Instantly share code, notes, and snippets.

@Mas-Tool
Last active April 26, 2016 17:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Mas-Tool/eae4b8cdb465d6e5a0a9254ad5144282 to your computer and use it in GitHub Desktop.
Save Mas-Tool/eae4b8cdb465d6e5a0a9254ad5144282 to your computer and use it in GitHub Desktop.
New Twiddle
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
init(){
var model = Ember.Object.create({
title:"My Cool Model",
items:[
{name:"item1",isSelected:true},
{name:"item2",isSelected:false}
]
});
this.set('model',model);
},
modelNames:Ember.computed('model.items.@each.isSelected',function(){
return this.get('model.items').filterBy('isSelected',true).map(function(item){return item.name}).join(',');
}),
actions:{
checkboxSelectionChanged:function(filter){
filter.isSelected=!filter.isSelected;
}
}
});
{{model.title}}
{{#each model.items as | filterItem |}}
<div><label><input type="checkbox" checked={{filterItem.isSelected}} onchange={{action "checkboxSelectionChanged" filterItem }} /> {{filterItem.name}}</label></div>
{{/each}}
<br>
{{modelNames}}
<br>
{
"version": "0.7.2",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js",
"ember": "https://cdnjs.cloudflare.com/ajax/libs/ember.js/2.4.4/ember.debug.js",
"ember-data": "https://cdnjs.cloudflare.com/ajax/libs/ember-data.js/2.4.3/ember-data.js",
"ember-template-compiler": "https://cdnjs.cloudflare.com/ajax/libs/ember.js/2.4.4/ember-template-compiler.js"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment