Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.80K
~305 People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for swskpper

the selected attribute does not work unless it is used in conjunction with the 'query' attribute. In other words, this won't work: <cfselect name="CTitle" selected="#rec.CTitle#"> <option value="Mr.">Mr.</option> <option value="Mrs.">Mrs.</option> </cfselect> -BUT...this WILL work- <cfselect name="CTitle" query="recCT" display="ctitle" value="ctitle" queryPosition="below" selected="#rec.CTitle#"> <option value=""></option> </cfselect> ALSO - I've found that when making …

Member Avatar for bregan507
0
305

The End.