Created
November 20, 2025 20:24
-
-
Save trycf/5905617c903e2f4d9457624249409a39 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 CompareNoCase(local.PropertyType,"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