-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
groupBy live reloading? #1
Comments
Can you provide an example of what you mean? |
@HeroicEric sure! I should've included that in the original writeup. I have a grouped list... When I create a new record, it does not automatically get added to the list. I must refresh the page in order to see the new grouped record appear. This is the code in my ArrayController:
|
Hmm. How are you creating the new record? |
I have an action in my controller that creates it using Ember data and form fields. actions:
createDocumentFormat: ->
fields = @get('fields')
fields.organization_id = @get('controllers.application.selectedOrgId')
fields.category = @get('selectedDocumentFormatType')
format = @store.createRecord 'document_format', fields
format.save().then (format) =>
@transitionToRoute 'document_formats' |
I need this as well, any update on how to accomplish this? |
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?
The text was updated successfully, but these errors were encountered: