@michaellee wrote:
Let's say I've got a list of students. I'm trying to figure out a way to show only a specific student in the list if one of the filter buttons is used. I'm not sure what property to even check for as indicated by the
???
below or how to really setup the action. This is what I've got so far. I'm not even sure if I'm on the right track.//In a .hbs template {{#each students as |student|}} {{#if ???}} {{student.name}} {{/if}} {{/each}} <b>Filter student</b> {{#each students as |student|}} <div {{action toggleStudent student}}>{{student.name}}</div> {{/each}}
//In corresponding controller to template ... actions: { toggleStudent(student){ this.toggleProperty("???") } } ...
Posts: 1
Participants: 1