ember-collection
ember-collection copied to clipboard
An efficient incremental rendering component for Ember.js with support for custom layouts and large lists
The Layout Markdown Demos show the parameters and results that ember-collection is passing and receiving to/from the layout templates. It has been extended to all layout types, so click the...
I am trying to create a custom layout but using the basic documentation provided in the read me is resulting in errors. A deeper look into ember-collection reveals that the...
Just trying to add it to a project doesn't work, installing with `ember install ember-collection` and then trying to use any of the default layouts gives me a: ember.debug.js:15332 Uncaught...
TLDR: this modification improves performance when an ember-collection is scrolled for the first time after being rendered. Forgive my loose terminology below - let me know if I am not...
I am using ember-collection to paint list view using "cell-layout=(fixed-grid-layout width height)" , also I made sure the parent div has position relative. But when i scroll the list Up-Down...
When using an ember-collection, and scrolling down for a bit (so views are recycled and re-ordered). Highlighting a portion that expands more than a few items will sometimes highlight the...
Fixes issue #121
``` // addon/components/ember-collection/template.hbs ... {{~#each _cells as |cell|~}} {{yield cell.item cell.index }} {{~/each~}} ... ``` What's a good way to apply the style using js? I've done this successfully in...
`ember-native-scrollable` sets `overflow: scroll` for mobile devices. what is the best way to override it with: `overflow-y: scroll; overflow-x: hidden;` ? Thanks.
Hi! I'm in the process of updating what @cibernox did here https://github.com/cibernox/ember-power-select-collection In its newest version ember-power-select relies on the `index` yielded property of the `#each` helper. It appears that...