Created
November 10, 2010 11:19
-
-
Save rip747/670716 to your computer and use it in GitHub Desktop.
default settings for wheels 1.1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--- disable automatic validations ---> | |
<cfset set(automaticValidations=false)> | |
<!--- delay redirections ---> | |
<cfset set(functionName="redirectTo", delay=true)> | |
<!--- disable automatic form field labels ---> | |
<cfset set(functionName="textField", label=false)> | |
<cfset set(functionName="textFieldTag", label=false)> | |
<cfset set(functionName="passwordField", label=false)> | |
<cfset set(functionName="passwordFieldTag", label=false)> | |
<cfset set(functionName="checkBox", label=false)> | |
<cfset set(functionName="checkBoxTag", label=false)> | |
<cfset set(functionName="fileField", label=false)> | |
<cfset set(functionName="fileFieldTag", label=false)> | |
<cfset set(functionName="radioButton", label=false)> | |
<cfset set(functionName="radioButtonTag", label=false)> | |
<cfset set(functionName="select", label=false)> | |
<cfset set(functionName="selectTag", label=false)> | |
<cfset set(functionName="textArea", label=false)> | |
<cfset set(functionName="textAreaTag", label=false)> | |
<!--- basic pagination links decoration ---> | |
<cfset set(functionName="paginationLinks", prepend="Pages: ", appendToPage=" | ", appendOnLast="false", classForCurrent="paginationLinks-current")> | |
<!--- application settings ---> | |
<cfset loc.myapp = {}> | |
<!--- put app settings here ---> | |
<cfset set(myapp = loc.myapp)> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment