I have developed a calendar/datepicker widget as an Ember.Component however I’m having issues when using more than one instance on a page.
It seems that there is no isolation in place - navigating through one calendar also updates any other calendars on the page. I’m assuming it’s because the view objects are being re-used, so any properties on that view are shared between all instances.
Is that the desired behaviour? If so, perhaps it should be mentioned in the docs somewhere.
If views are always re-used in this way, what is the correct Ember way to create isolated components?