group-helper icon indicating copy to clipboard operation
group-helper copied to clipboard

An experimental helper to change the granularity of bindings.

Results 6 group-helper issues
Sort by recently updated
recently updated
newest added

Hello I have an ember app that renders a large nested list. It is pretty slow (10s on a 2010 MBPro). Reading this thread: http://discuss.emberjs.com/t/ember-is-very-slow-at-rendering-lists/1643 I decided to give the...

Here's a JSBin illustrating the problem: http://emberjs.jsbin.com/wawurize/1/edit Basically this works: ``` {{#group}} {{#each model}} {{this}} {{/each}} {{/group}} ``` But this doesn't ``` {{#group}} {{#each item in model}} {{item}} {{/each}} {{/group}}...

Here's a quick jsbin illustrating the issue: http://emberjs.jsbin.com/migol/6/edit You can wrap a component inside the group helper and it would work. However, if you have a group block with an...

The `group` helper doesn't currently work with `itemController`'s defined as arguments to the `each` helper. I'm working on a fix for this.

bug

I'd love to try this out, but am somewhat intimidated by how to go about getting it into my project. My current guess (which I'm about to embark on trying)...

I noticed issues concerning use of {{#group}} & {{#with}} in EmberJS 1.0 & 1.3: Consider template file `element.handlebars`: ``` {{#group}} {{#each item in items}} {{#with item}} {{#if item.containedInParent}} {{#unless item.showWithControls}}...