After search for a few hours...I found the answer to my problem from this question: How to populate a select list using a structure inside select HTML helper in ColdBox?
This example is perfect since I wasn't able to find anything on the ColdBox Doc. I used the "simple-form" for my Options... the result display is correct. However, the selectedValue does not seem to work when the value is a "". I also tried populating the Options from an array. I had the same issue for both method when it comes setting selectedValue is .
When the value is "", the first value in the Options always gets selected. How do I fix this or how do I change the Options to display "Select..." for when a selectedValue is ?
#html.select(
name="Approved",
options="Yes,No,Pending",
column="value",
selectedValue="",
label="",
required="required",
title="Approved"
)#