Last active
June 17, 2017 11:50
-
-
Save stphnwlkr/20b95f7bb8f0e76f65f192d6de37a054 to your computer and use it in GitHub Desktop.
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
<cfset org = application.jobs.getOrgList()> | |
<cfset orglist = org.CodeList > | |
<cfoutput> | |
<cfloop array="#orglist#" index="occ"> | |
<cfset orgData = occ.ValidValue> | |
<cfloop array="#orgData#" index="data"> | |
#data.Code# - #data.Value# | |
</cfloop> | |
</cfloop> | |
</cfoutput> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment