I'm new to Ember/Sproutcore... From what i could find in SproutCore documentation, SC.TemplateView supports loading handlebar template from external files. Does this functionality exist in Ember?
|
feedback
|
|
Yes you can load external templates into an Ember app using BPM. Unfortunately, there isn't any mention of this great tool in the Ember website (hopefully that changes). EDIT (01/02/12) I have created BPM packages for Ember.js on GetBPM.org so the previous instructions are no longer needed. For those new to Ember and don't know about BPM here are some useful links to get started: | |||||
feedback
|
|
As other answers have mentioned, your build tool is the key to achieving this. The following StackOverflow question shows how to do this using Rake::Pipeline Setting up rake-pipeline for use with handlebars alongside Google App Engine Regarding BPM vs. Rake::Pipeline: At the moment, the Ember.js core team is using Rake::Pipeline in their production projects. The authors of BPM have expressed interest in getting back to it, but no one is actively developing it as far as I know. That said, it's a great tool, and we're currently using it on a project. | |||||||
feedback
|
|
It's no problem to load your template from an external File. Like in SC1 this functionality is provided by your build tool which in fact translates your external files into the appropriate javascript code. One solution to do that is to make use of BPM. | ||||
|
feedback
|