Meengla
Member since Oct 6, 2010
- Profile: /members/7017-meengla.htm
- Comments: 2
Recent Blog Comments By Meengla
-
ColdFusion & AJAX: Converting ColdFusion Objects to Javascript Objects
Posted on Oct 10, 2010 at 7:14 PM
@Ben, Thanks Ben! <cfset row = #rowCopy(qryAllSpecialties,currentRow)#> <!---Call function above to return row---> <cfset jsobjects = #SerializeJSON(row)# /> <tr><td>#SpecialtyName#</td><td><LINK="javascript:addedit(#jsStringFormat(jsobjects)#)&... read more »
-
ColdFusion & AJAX: Converting ColdFusion Objects to Javascript Objects
Posted on Oct 6, 2010 at 8:39 AM
Very nice work here. Almost helped me with returning a CF structure to javascript. Almost! Here is my code snippet: -------------------- <cfset jsobjects = #StructToObject(row)# /> <tr><td>#SpecialtyName#</td><td>[LINK]="javascript:addedit('e','#jsobjects#')&... read more »