Ask a Question related to Coldfusion Flash Integration, Design and Development.
-
tommyviper #1
Re: cfgrid not displaying data
Ask your host to check the CFIDE mapping. I had a similar issue. It should be mapped by default, but sometimes it is not. Hope that helps!
tommyviper Guest
-
Cfgrid not displaying updated data till mouse over
Hi Everyone, I have a cfgrid at the top the page. Users select a record and edits it on the button portion of the page. I use flash remoting to... -
CFGRID Not Displaying - Urgent
http://69.2.212.105/ext/sl/manage_leads.cfm?User_ID=1 Why doesn't my grid appear? <cfform action="#CGI.SCRIPT_NAME#" method="post"... -
CFGRID - Problems displaying in IE
Is anyone having problems getting the CFGRID (with the java plugin option) to display on IE. I'm finding that its working ok on Windows 2k boxes,... -
Flash cfgrid not displaying
I am trying to populate the cfgrid with the query information. The browser isn't displaying the flash grid but will display the grid if I change... -
Format cfgrid data
One of the fields I want to display in a cfgrid is a Social Security number. I want to mask it, and only show the last 4 digits. I.e. ... -
CF_Hack #2
cfgrid not displaying data
I'm using cfgrid to display a query of queries. cfgrid as type applet displays
everything perfectly. as flash only two columns display. Also i can't change
the format of the number in flash while I can in applet. The mask attribute
doesn't seem to work. Code below of a smaller grid that doesn't work either.
query
<CFQUERY DBTYPE="query" NAME="all_oil">
SELECT get_total_oil.yyyy, get_total_oil.ievalue as total,
get_crd_prod.ievalue as crude
FROM get_total_oil,get_crd_prod
where get_total_oil.yyyy=get_crd_prod.yyyy
order by YYYY
</CFQUERY>
<CFQUERY DBTYPE="query" NAME="all_oil2">
SELECT all_oil.yyyy, all_oil.total,all_oil.crude , get_conc.ievalue as conc
FROM get_conc, all_oil
where all_oil.yyyy=get_conc.yyyy
order by YYYY desc
</CFQUERY>
<cfform format="flash">
<cfgrid format="flash" query="all_oil" name="test" >
<cfgridcolumn name="yyyy" header="Year" width="40">
<cfgridcolumn name="total" header="Total Oil Production">
<cfgridcolumn name="crude" header="Crude Production" >
</cfgrid>
</cfgrid>
CF_Hack Guest
-
Chuck1411 #3
Re: cfgrid not displaying data
Reason this one doesn't work is because you have two </cfgrid> closing tags.
You also don't need to define the grid as format flash if the form is format
flash.
According to the docs, mask only works with Flash, not applet, wonder if that
is a typo. Pg 200 of Reference Vol 1.
And if you want the grid to use the QoQ all_oil2, you should specify that name
in the <cfgrid query tag.>
Chuck1411 Guest
-
CF_Hack #4
Re: cfgrid not displaying data
[q]Originally posted by: Chuck1411
Reason this one doesn't work is because you have two </cfgrid> closing tags.
Typo. My code has a closing </cfform> tag
You also don't need to define the grid as format flash if the form is format
flash.
This doesn't matter since it doesn't work either way.
According to the docs, mask only works with Flash, not applet, wonder if that
is a typo. Pg 200 of Reference Vol 1.
That is correct. Doesn't matter still no data either way.
And if you want the grid to use the QoQ all_oil2, you should specify that name
in the <cfgrid query tag.>
Either way it doesn't work
CF_Hack Guest



Reply With Quote

