Skip to content

Instantly share code, notes, and snippets.

@phkavitha
Created November 9, 2015 13:50
Show Gist options
  • Save phkavitha/9f995ea00b7e6b8180db to your computer and use it in GitHub Desktop.
Save phkavitha/9f995ea00b7e6b8180db to your computer and use it in GitHub Desktop.
StackOverFlow - Ember Select
import Ember from 'ember';
export default Ember.Controller.extend({
appName:'Ember Twiddle',
countries: [
{code:"IN", name: "India"},
{code: "US", name: "USA"}
],
selectedCode: "US",
actions: {
selectionchange() {
console.log("inside the action");
}
}
});
<h1>Welcome to {{appName}}</h1>
<br>
<br>
{{outlet}}
<select class="left-float" onchange={{action "selectionchange"}} >
{{#each countries as |country|}}
<option value="{{country.code}}" selected={{eq selectedCode country.code}}>{{country.name}}</option>
{{/each}}
</select>
<br>
<br>
{
"version": "0.4.16",
"EmberENV": {
"FEATURES": {}
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js",
"ember": "https://cdnjs.cloudflare.com/ajax/libs/ember.js/2.1.0/ember.debug.js",
"ember-data": "https://cdnjs.cloudflare.com/ajax/libs/ember-data.js/2.1.0/ember-data.js",
"ember-template-compiler": "https://cdnjs.cloudflare.com/ajax/libs/ember.js/2.1.0/ember-template-compiler.js"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment