Roland

Results 15 comments of Roland
trafficstars

I just set up a test with a fresh Ember 2.14 application and it definitely works for me. Could you perhaps share the template code you're using?

It's difficult to tell whats going wrong here without an example. What might be going wrong is that you are building a separate array of label strings and then pointing...

Could you try: ```js awardName: computed.alias('award.name') ```

Unfortunately I don't think your inline images made it through Github's mail forwarder.

I think the problem is that the label property is a promise and so at the initial render it is still empty. The checkboxes need to rerender once this promise...

I may have a fix. It's on a separate branch for now. Could you try replacing your current `ember-multiselect-checkboxes` dependency in your `package.json` with: ``` "ember-multiselect-checkboxes": "git://github.com/RSSchermer/ember-multiselect-checkboxes.git#promise-labels" ``` And see...

Let's call it solved then for now. I'll leave the fix on a separate branch for the time being. If this problem pops up again for you or someone else...

> dbinetti commented 4 hours ago > hm. it's not giving me the option to re-open. @RSSchermer should i start a new issue? No, I'll reopen, don't know why it...

This is probably not what's going wrong but on the off chance: you are sure you were actually using the `promise-labels` branch and didn't forget to e.g. run `npm install`...

That sounds like something for which perhaps a custom template is better suited: ```hbs {{#multiselect-checkboxes options=options selection=selectedOptions as |option isSelected|}} {{input type="checkbox" checked=isSelected disabled=option.isDisabled}} {{option.label}} {{/multiselect-checkboxes}} ``` Would that work...