I want to have an argument like this:
<cfargument
name="exclude"
type="list"
required="false"
default="-1"
hint="A list of source IDs that should be excluded"
>
I don't see it in the docs at http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=Tags_a-b_6.html by I don't really trust them.
Does anyone know if this is possible or will I have to convert to an array?
At the moment I get an error:
The EXCLUDE argument passed to the renderSelectSource function is not of type list.
It's not complaining that "list" is not a valid type, but maybe it's just a bad error message.
string. Re: The error, sincelistisn't one of the basic types (string, boolean, numeric, ...) CF will assume it is a component name. You probably do not have a/List.cfchence the error. – Leigh Jun 8 '11 at 17:15