Created
July 22, 2025 13:08
-
-
Save trycf/3b4da1eb97b893c5feae46d1dd7beceb to your computer and use it in GitHub Desktop.
TryCF Gist
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 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