The Ember.Select view class renders a select HTML element, allowing the user to choose from a list of options.
Questions tagged [ember-select]
15 questions
2
votes
1 answer
Can Ember.Select render a promise for content
I'm trying to render out a list of items and provide select inputs for each item. The options for select come from the store, so would be a promise when passed to the Ember.Select. Is this possible? It doesn't look like the view will rerender if the…

claptimes
- 1,615
- 15
- 20
1
vote
0 answers
Select2 Tagging in EmberJS
I'm developing an app that needs Tags, and i'm using select2.
I've searched about this issue and found the following link:
https://github.com/iStefo/ember-select-2/pull/92
As far as I know there is a pull request that adds this functionality to the…

João Ribeiro
- 11
- 4
1
vote
1 answer
Ember array not updating template
Whats the likely cause of when you update an array in the controller and the update is not shown in the view (where as it works when the page loads initially).
My action that does the update:
submit: function (foo) {
let arr =…

SuperUberDuper
- 9,242
- 9
- 39
- 72
1
vote
2 answers
Not possible to install add-on for ember-cli
I am trying to test the ember-select-2 component. It is advertised as very easy to set-up. According to the readme:
# install addon from npm repository
$ npm install ember-select-2
# install dependencies
$ ember g ember-select-2
Installing the…

blueFast
- 41,341
- 63
- 198
- 344
1
vote
1 answer
Ember - wait for everything to be loaded
I have in my App many different Select Views that load data from a restful app via Ember-data;
i need to execute some code only when everything is done: all the select view have finished loading and rendered...
Is there a callback i can use for…

Cereal Killer
- 3,387
- 10
- 48
- 80
0
votes
2 answers
Ember unable to retain dropdown value
I am using Ember 2.5.0. In my application, I have created a page with a dropdown using the ember-select-list plugin.
I am able to render the dropdown, but unable to retain the value of the dropdown. Whenever I select the value, I am getting the…

VelNaga
- 3,593
- 6
- 48
- 82
0
votes
1 answer
Can I use select-2 tag in handlebars using a simple object?
I have an object
let StatusDescriptions = {
'A' : 'Available' ,
'W' : 'Waitlisted' ,
'C' : 'Closed'
};
which is available in the page. And I use handlebars to display the page. Can I use this object in a select-2…

sree
- 543
- 6
- 21
0
votes
1 answer
Is their any way to call ember-selectize action into controller?
I am new to ember development. I have to call action on the ember-selectize,
but I am not getting where to write that action code?
//template
{{ember-selectize
id = property
content = studentNames
optionValuePath =…

mohan.gade
- 1,095
- 1
- 9
- 15
0
votes
1 answer
Ember Select not firing on Change
I know this is a common problem, but I can't get an Ember.Select view to fire on its value changing. I'd either like to update the selectedInvitation based on the selection in the drop down, or call an action that will perform this behavior.
I've…

Michael
- 1,786
- 5
- 23
- 42
0
votes
0 answers
Can't get property/model array in selection binding until too late
I have an Ember Select view in my Ember CLI project that is bound to a dynamic model (an array of trips) that is created in setupController. Once loaded up the selection needs to default to a particular one indicated by tripId.
The method called in…

evilseto
- 29
- 6
0
votes
1 answer
Ember select is not showing the selected item
I know there is a small problem staring right at my face by can't figure it out.
Consider
{{view Ember.Select
content=baseList
optionLabelPath="content.desc"
optionValuePath="content.id"
…

wallop
- 2,510
- 1
- 22
- 39
0
votes
1 answer
Ember select - Select event is getting called on page load well
Please look at this fiddle. http://jsbin.com/ofONeQ/99/edit
I am using EmberJs select control and have added a select event to the control. Problem is as the page loads for the first time, system fires the select event. What I want is to system to…

SharpCoder
- 18,279
- 43
- 153
- 249
0
votes
1 answer
How can I attach event handler to emberJs select
I am new to EmberJs and I have added a select (combo box) like this:
{{view Ember.Select
content = clientOptions }}
in controller I have added
App.MyController = Ember.Controller.extend({
clientOptions : ['All Data','My Data'],
Now…

SharpCoder
- 18,279
- 43
- 153
- 249
0
votes
1 answer
How to create select in emberJs and add data to it with event handling
I want to create a combobox (select) in emberjs. I want to add few records to that combobox and then do event handling for it. I am new to EmberJs and finding it difficult to add a combobox with event handling. I used this fiddle…

SharpCoder
- 18,279
- 43
- 153
- 249
0
votes
1 answer
How to add id's to ember SelectOption
Is there any way to add id's to each option from the content object? I have tried
{{ view Ember.Select contentBinding="names" optionValuePath="content.value"
optionLabelPath="content.label" optionIdPath="content.identity" }}
This doesn't work,…

iConnor
- 19,997
- 14
- 62
- 97