Created
November 20, 2025 20:25
-
-
Save trycf/fa406726bcd5f04b0a823069884a4009 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 local.PropertyType = "Residential"> | |
| <select class="form-control" name="PropertyType" id="transaction_maintain_form-PropertyType"> | |
| <option value="">None</option> | |
| <option value="Residential" <cfif local.PropertyType eq "Residential"> SELECTED</cfif>>Residential</option> | |
| <option value="Commercial" <cfif local.PropertyType eq "Commercial"> SELECTED</cfif>>Commercial</option> | |
| <option value="Land" <cfif local.PropertyType eq "Land"> SELECTED</cfif>>Land</option> | |
| <option value="MultiFamily" <cfif local.PropertyType eq "MultiFamily"> SELECTED</cfif>>MultiFamily</option> | |
| </select> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment