I currently have a CFSELECT list that binds to a CFC to get the list of data.
Here is my CFSELECT
<cfselect name="descriptionDD4"
id="descriptionDD4"
value="description"
bind="cfc:cfcs.menudata.getData()"
bindonload="true" />
Here is my CFC
<!---First Slect Box --->
<cffunction name="getData" access="remote" returntype="query">
<cfoutput>
<!--- Function to get data from datasource --->
<cfquery name="data" datasource="#datasource#">
select description
from service_descriptions
order by description
</cfquery>
</cfoutput>
<!--- Return results --->
<cfreturn data>
</cffunction>
What I would like to do is add a static option to the top of this list that is a hyperlink. But what I've found is that if I use the bind command, I cannot add any options to my list as it will throw a CF error.
Is there any way to keep my current configuration but add a hyperlink option to this list.?