Last active
August 29, 2015 14:13
-
-
Save rjfranco/7dbcf80f4c385800d4c3 to your computer and use it in GitHub Desktop.
Ember.js Error when updating properties
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Uncaught Error: Assertion Failed: An attribute binding was triggered when the element was not in the DOM | |
| ember.js?body=1:3903 | |
| Ember.assertember.js?body=1:7393 | |
| applyAttributeBindingsember.js?body=1:41697 | |
| merge.invokeObserverember.js?body=1:43838 | |
| CoreView.extend._wrapAsScheduled.stateCheckedFnember.js?body=1:849 | |
| Queue.invokeember.js?body=1:914 | |
| Queue.flushember.js?body=1:719 | |
| DeferredActionQueues.flushember.js?body=1:144 | |
| Backburner.endember.js?body=1:547 | |
| (anonymous function) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| return _this.getAttendeeData(idents).then(function(data) { | |
| schedule_item.invitations = _this.processInvitations(schedule_item.invitees, data.attendee_list); | |
| return _this.get('model').setProperties(schedule_item); | |
| }); |
Author
Author
Thank you sean <3
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I've got the error down to a input text field that I remove through another library that replaces it with a datepicker. Trying to see if there's a proper ember-rish way to just set the value on this input field and then forget about it instead of actually making it a data binding.