Currently, I have an Application which consists of a BasePage which as a header (panel), footer(panel) and in the center for inherited page content. The problem I am running into is with ResourceReferences (Perhaps this isn't even the right way). I am looking for a solution which will allow me to do the following:
- Have a single directory for globally used images, js, css
- Register (or not) those resources so that they can be accessible from any inherited page or sibling pages to BasePage I might create in the future
- Allow those resources to be accessible within CSS and JS (e.g. urls to images)
So far I have read through several examples which show how to package resource for a component or application level scope, but none that seem to address all 3 issues I am looking for help with. It is critical that I don't have to copy globally used images (edit icon, logos, etc) into each component package for referencing, and it would be nice for maintenance reasons that these bindings be made in one place globally for easy reference and updating.