https://github.com/huafu/ember-sortable-collection-view
Very fast collection view sorting with Ember
https://github.com/huafu/ember-sortable-collection-view
Last synced: 3 months ago
JSON representation
Very fast collection view sorting with Ember
- Host: GitHub
- URL: https://github.com/huafu/ember-sortable-collection-view
- Owner: huafu
- Created: 2014-10-30T18:03:40.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-10-30T18:21:19.000Z (over 10 years ago)
- Last Synced: 2025-03-01T04:34:21.594Z (3 months ago)
- Language: JavaScript
- Size: 125 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# sortable-collection-view
Provide a `SortableCollectionView` and `SortableCollectionItemView` to sort **visually** a collection
of items. The items are not sorted in memory, but only on the screen, which allow very fast sorting.**This is still a WIP, while it is working, it does not yet listen correctly for changes in the given
`content` and its items' properties**## Installation
* `npm install --save-dev ember-sortable-collection-view`
* In your template:```handlebars
{{view 'ember-sortable-collection-view@sortable-collection'
content=model
itemTemplate='some/template'
sortProperties='name,date'
sortAscending=false}}
```