Difference between revisions of "Load ADF Components into Site"

From ADF Docs
Jump to: navigation, search
(Load ADF Library Components into a Site)
Line 5: Line 5:
  
 
To load a specific version of an ADF Library component into the sites ''application.ADF'' scope, follow the instructions for [[Site_Configuration#ADF_Library_Components_Overrides|ADF Library Components Overrides]].   
 
To load a specific version of an ADF Library component into the sites ''application.ADF'' scope, follow the instructions for [[Site_Configuration#ADF_Library_Components_Overrides|ADF Library Components Overrides]].   
 
 
 
 
 
ADF Library components are automatically loaded into the sites ''application.ADF'' scope
 
 
 
Following are instructions to load the ADF library components into a sites ''application.ADF'' scope:
 
 
# Open the ''ADF.cfc'' in the sites "_cs_apps" directory.
 
# Locate the ''Define the ADF components...'' section at the top of the file.
 
# Set an ''application.ADF'' structure to the ADF library component with the structure key as the short name for the component (name without the version numbers).
 
# Here is a sample for adding the ''Scripts_1_0'' ADF library component into the ''application.ADF.scripts'' variable:
 
  application.ADF["scripts"] = server.ADF.objectFactory.getBean("scripts_1_0");
 
 
The scripts component is now accessible via application scope for the site.
 
  application.ADF.scripts
 
 
See the [[Site_Configuration#ADF_Library_Components|Site Configuration - Library Components]] wiki page for more details.
 
 
== Related Guides ==
 
* [[Installation|ADF Installation]]
 
* Adding Site Level Components (non application)
 
  
 
[[Category: How-to Guide]]
 
[[Category: How-to Guide]]

Revision as of 14:22, 26 March 2010

Load ADF Library Components into a Site

Loading the ADF Library components into the site is controlled in the Site Configuration.

To enable the full ADF Library components automatically loaded into the sites application.ADF scope, follow the instructions for ADF Library Components. Note: this will load the most recent versions of the ADF Library component.

To load a specific version of an ADF Library component into the sites application.ADF scope, follow the instructions for ADF Library Components Overrides.