Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save trycf/3b4da1eb97b893c5feae46d1dd7beceb to your computer and use it in GitHub Desktop.
Save trycf/3b4da1eb97b893c5feae46d1dd7beceb to your computer and use it in GitHub Desktop.
TryCF Gist
<cfset Investorgroups = []/>
<cfif rc.investorIdMatrixPriv>
<cfset var newObj = StructNew() />
<cfset var newObj1 = StructNew() />
<cfset newObj["DISPLAY_NAME"] = "Create New Investor" />
<cfset newObj["VALUE"] = "Create New Investor" />
<cfset newObj1["INV_GROUP"] = "Create New Investor" />
<!--- Append the new object to the Investorgroups array --->
<cfset arrayAppend(Investorgroups, newObj) />
<cfset arrayAppend(Investorgroups, newObj1) />
</cfif>
<cfdump var="#Investorgroups#" abort>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment