Q&A
Q. For a typical app, should I start with the Blank App project template or another?
A. Rarely does it make sense to start with the Blank App project template. Instead, either the Split App or the Grid App is a better choice, depending on your needs. If there is no need for data to be loaded, the Navigation App is a good choice.
Q. Can I load content from the web directly into my app?
A. Yes! web content can be added using iframe elements. Information can be passed to and from the iframe using the window.postMessage function.
Q. When running in local context, can I reference scripts on the web?
A. No. For scripts to be loaded in the local context, they must be packaged with the app. If a remote script must be referenced, the page that needs that script must reside in an iframe.