Question
CFSelect - Bind - Selected
Lets say that I have the following:
<cfselect name="city" value="unid" display="city" bind="cfc:Examples.CFC.Geographic.getAllCities()" bindonload="true" onChange="submit()" />
This will return all the countries in our system. When the form submits onChange, the value changes to the city at the top of the list.
How do I get the cfselect to default to the value selected when it was previously changed ?
