
| Item to Change | Where to edit the code |
|---|---|
| Stored Procedures | cfc/SQLStoredProc.cfc |
| <cfstoredproc> | cfc/mssql/CFstoredProc.cfc |
| Custom Tags | templates/cfmltemplates |
| CFML | templates/customtagtemplates |
Form UI - On forms that interact with tables with foreign keys, Squidhead will produce a select box of the aforementioned "foreign key labels."
List and Read UI- These components now call separate stored procedures that properly join the requisite tables to show the appropriate "foreign key label" in lieu of the actual value.
If you use the application template fkCrazy Squidhead will build methods in all of your business objects that allow you to manipulate tables across foreign key linked tables.
You have to deactivate the ColdFusion 8 specific ui components. To do so add the following lines to your config file:
<!--- These are UI settings for changing the way the ui is rendered --->
<cfset config['ui']['RichTextAreas'] = FALSE />
<cfset config['ui']['DateField'] = FALSE />
<cfset config['ui']['Images'] = FALSE />