Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save trycf/5905617c903e2f4d9457624249409a39 to your computer and use it in GitHub Desktop.

Select an option

Save trycf/5905617c903e2f4d9457624249409a39 to your computer and use it in GitHub Desktop.
TryCF Gist
<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