I have a list which based on certain properties returns a sub list. Is it possible to bind this property with outside control, so when it is set, the filtered list view can refresh itself.

Right now if I do:

MyApp.widgetIconsController.set 'iconareacolor', 'lightBlue'

the filtered list didn't change

{{#each MyApp.widgetIconsController.filtered}} 
    {{#view MyApp.IconView txtBinding ="this"}}
      <div> {{unbound txt.widgetName}} </div>
    {{/view}}
 {{/each}} 

MyApp.widgetIconsController = Ember.ArrayProxy.create
  iconareacolor: null

  content: [
    MyApp.ButtonWidget.create({'theme': 'lightblue'}),
    MyApp.TextWidget.create({'theme': 'lightblue'}),
    MyApp.ButtonWidget.create({'theme': 'lightcoral'}),
    MyApp.TextWidget.create({'theme': 'lightcoral'}),
    MyApp.InputWidget.create({'theme': 'lightcoral'}) ]

  filtered: (->
    filteredList = this.get("content").filterProperty 'theme', this.get('iconareacolor')
  ).property("content.@each.theme").cacheable()
link|improve this question
feedback

1 Answer

You need to add iconareacolor to the filtered property list.

.property("content.@each.theme", "iconareacolor")

link|improve this answer
add iconareacolor to property list didn't fix the issue, i post a demo http://jsfiddle.net/lily/AR7Kr/, when you click the text 'blue' or 'red', it suppose display a filtered list – lilyfrommars Feb 22 at 5:52
I spelt it 'colour' and you've spelt it 'color'. International English vs British English causing problems yet again. Have updated my answer and the jsfiddle: jsfiddle.net/tomwhatmore/AR7Kr/1 – Tom Whatmore Feb 22 at 9:55
finally figured out, instead of using Ember.ArrayProxy.create, have to use Ember.ArrayController.create, here is the working demo [link] (jsfiddle.net/lily/jcpAs) – lilyfrommars Feb 27 at 22:05
@lilyfrommars ArrayProxy and ArrayController are exactly the same, see this answer for details. The only problem was the fact I spelt color with a u, as mentioned in my previous comment. – Tom Whatmore Feb 28 at 11:15
Tom, you are totally right, thank you for the help. – lilyfrommars Mar 6 at 18:25
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.