1
vote
3answers
87 views
Dynamic Variable Names Coldfusion
Hey Guys, I'm having a tad of an issue dealing with Dynamic Variable Names. What is happening is I have a CFC that builds part of form for me using some data in a table. Then the c …
0
votes
3answers
76 views
How do I pass an edited Flex datagrid to a CFC to insert to a database
I have a datagrid which is editable and I need to send that back to the database via a CFC for insertion into the database after all the editing is complete. Dumping the array coll …
2
votes
6answers
164 views
Ajax requests, through MVC Framework (e.g. ColdBox) or not?
Do you fire ajax requests through the MVC framework of choice, or directly to the CFC?
I'm leaning towards bypassing the MVC, since I need no 'View' from the ajax request.
What a …
0
votes
1answer
51 views
Staging my Coldfusion app when using CFC inheritance/extends
I have an application.cfc in a subdir of my webroot:
/app/application.cfc
I recently added another application.cfc in a subdir of that and it extends the original application.cf …
1
vote
1answer
32 views
how to get Exception details from CFC file
I have a Function in CFC file, which will be called from .cfm file like below
<cffunction name="cftest" access="public" returntype="query" output="true" hint="Function returns …
0
votes
1answer
40 views
Can CFTHREAD be used for LDAP housekeeping?
Can I keep two records in LDAP in sync using CFTHREAD?
I need to check if a record is still valid by looking up a cn elsewhere. So if it is invalid I want to delete it. This mean …
0
votes
1answer
39 views
question about coldfusion displaying query result in a cfgrid
hi guys,
i have a coldfusion cfc and some methods in it. MethodA will return a cfquery object. now i use cfajaxproxy to call MethodA and get the query result in a cfm page. this cf …
0
votes
2answers
60 views
combobox dataprovider
I have the following:
<mx:RemoteObject id="myCFC" destination="ColdFusion" source="components.myCFC" showBusyCursor="true">
<mx:method name="getStuff" result="User …
1
vote
3answers
1k views
flex: Save an editable datagrid via a cfc
Hi
I have an editable datagrid which i need to be able to save with other form fields via a cfc in coldfusion.
Basically the aim is that there are a number of locations retrieve …
1
vote
1answer
89 views
Flex 3 / Coldfusion 8 Problem with Numbers
We recently migrated from coldfusion 7 to coldfusion 8. One of our reporting flex apps takes the returned results of a cfc query and adds up a column in that ArrayCollection. It wo …
0
votes
1answer
100 views
Flex RemoteObject Source not found
Our flex project, which works fine in its current environment with coldfusion 7 single server.
We moved this project to Coldfusion 8 multi server, and updated the remoteobject pa …
1
vote
2answers
90 views
Can you reassign the default <cfargument in a cfc?
I'm invoking a cfc, the cfc has a default set of arguments like so:
<cfargument name="EMAIL_TEMPLATE_CODE" type="string" required="yes" hint="EMAIL_TEMPLATE_CODE is required."& …
0
votes
3answers
80 views
remoteObject Fails After Recompiling Using CF8
I've been handed a Flex project that was originally built and compiled using Flex3 and CF7. My setup is Flex3 with CF8. Everything works fine when I initially pull the project ov …
1
vote
6answers
202 views
Coldfusion Class definition error. Where is the problem?
I have the following Applicaton.cfc
<cffunction name="onApplicationStart" access="public" returntype="Object">
<cfset application.dsn = "myDB" />
<cfset applicati …
1
vote
2answers
78 views
Is it possible to dynamically populate a CFC with arguments?
The following code errors:
<cfdbinfo datasource="#Application.DSN#" name="getCols" type="columns" table="#this.tableName#">
<cftry>
<cfquery name="getColumnDetail …
