ember-group-by
ember-group-by copied to clipboard
An Ember addon that adds a computed property macro for grouping objects by a given property.
Ember `findBy` method compare by identity and that's good for primitive values, but when we deal with objects identity could not be the perfect solution. For example, 2 different `Date`...
I am having trouble installing this add-on on my current projector despite using it successfully on other projects in the past. The error I get is `The engine "yarn" is...
I was wondering if it would be possible to use the group by functionality and have it automatically update its content when a new model gets added to the store?
I am using the `group-by` to show referenced items, but I am unable to load data from the related model. The item loads the data if there is only 1...
groupBy does not work if you are trying to group using Ember's date attribute. Suppose we have a model: ``` // app/models/entry.js export default Model.extend({ name: attr('string'), date: attr('date'), });...
Hi! Thank you for **ember-group-by**. It makes things so simple and fast to develop! I'm having a performance question. I'm grouping model items that are being loaded by `ember-infinity`. Here's...
I ran into some issues how to use more complicated functions on the group. So I updated the dummy code to have a more complicated example. Thanks Daan for doing...
I added some extra functionality to the groups. Now, when the groups are created, they can get some additional properties which can be `get()` and `set()` in a controller. Properties...