A little code for your reference on how CF deals with struct keys:

<cfset myStruct = StructNew() />
<cfset myStruct.foo = "bar" />
<cfset myStruct.bar = "foo" />

<cfset myStruct2 = StructNew() />
<cfset myStruct2['foo'] = "bar" />
<cfset myStruct2['bar'] = "foo" />

<cfoutput>
 Struct 1 keys: #StructKeyList(myStruct)#<br />
 Struct 2 keys: #StructKeyList(myStruct2)#
</cfoutput>

Knowing the difference can save you when using structs with js and xml, etc.

HTH

Dominic


2008/11/19 Al Musella, DPM <[EMAIL PROTECTED]>:
> That worked!  Thanks
>
>
>>JavaScript is case-sensitive.  Structs are returned with key names in
>>uppercase.  Try result.CITY and result.STATE.
>
>

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:315575
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

Reply via email to