William Fisk
Member since Dec 11, 2008
- Profile: /members/2361-william-fisk.htm
- Comments: 1
Recent Blog Comments By William Fisk
-
Learning ColdFusion 8: Implicit Struct And Array Creation
Posted on Jun 7, 2007 at 9:03 AM
Yes we cannot have dynamic array of structs either. So this does not work <cfset pages=[{name="Carrot",value=2},{name="Rabbit",value=3}> but you can have an array of lists using new style array creation: <cfset pages=["carrot,2","Rabbit,3"]> I then wrote a function to convert an array o... read more »