Ask a Question related to Coldfusion Flash Integration, Design and Development.
-
cqk #1
CFGRID and format=flash
We have been testing CFGRID with format = flash . This works on our dev web
server but not our live server. Both are running Wiondows Server 2000, IIS 6,
CFMX7.0.1 with Hotfix 2
On the dev server the column headings and data appear in the flash grid. But
on the live server only the column headings appear and the flash grid appears
but no data yet is appears to load the data but does not show the data.
you can test this at [url]http://www.ametsoc.org/flashtest3.cfm[/url]
The code is
<!--- Query the database to fill up the grid. --->
<cfquery name="qry_states" DATASOURCE="#dbdsn#" USERNAME="#dbuid#"
PASSWORD="#dbpwd#">
SELECT * from States
ORDER BY StateAbbrev
</cfquery>
<h3>cfgrid Example</h3>
<I>Using flash as format - on live server only the column names show up but
not the data</i>
<!--- cfgrid must be inside a cfform tag. --->
<cfform name="frmGrid" method="post" action="">
<cfgrid name = "FirstGrid"
height="320" width="580"
query = "qry_states"
font="Tahoma" fontsize="12" appendkey="yes" griddataalign="left"
gridlines="yes" rowheaderalign="left" colheaderalign="left" selectmode="browse"
enabled="yes" visible="yes" format="flash" autowidth="true">
</cfgrid>
</cfform>
cqk Guest
-
cfgrid/ flash and number format
Can someone please explain why the following does not use the numberformat when format=flash? Yet when I change it to format=html it does act on... -
cfgrid half loading in flash format
i'm attempting to load a cfgrid in flash format. the grid will load about half way....all the headers will load but the data will not. the little... -
Misaligned data in cfgrid using flash format
I've got columns of data pulled from a mysql db with different data types into a cfgrid with the formate set as flash. It seems that the datetime... -
CFGRID format='flash' masking a number Field
Home do I format a Number field from a query in a grid format='flash'? <gridcolumn field='qty' header='Quantity' how do I use the mask? -
CF7 flash cfgrid date format
the problem is the 1957 at the end, CF doesn't like any date data after the GMT portion., you'll need reformat the date in your SQL statement, then... -
Al Parvar #2
Re: CFGRID and format=flash
I think you forget to add cfgridcolumn my friend !!
<cfgrid name="test" format="Flash" query="test">
<cfgridcolumn name="itemA">
<cfgridcolumn name="itemB">
<cfgridcolumn name="itemC">
</cfgrid>
Good luck
Al Parvar Guest
-
cqk #3
Re: CFGRID and format=flash
Well I thought that too, but the exact code that I show works perfectly on our
development web server. Even with the column name specified the code works
only on the development server
compare dev server URL <a target=_blank class=ftalternatingbarlinklarge
href="http://web2.ametsoc.org/flashtest3.cfm
to">[url]http://web2.ametsoc.org/flashtest3.cfm[/url]
to</a> the live server URL <a target=_blank class=ftalternatingbarlinklarge
href="http://www.ametsoc.org/flashtest3.cfm
">[url]http://www.ametsoc.org/flashtest3.cfm[/url]
</a>
cqk Guest
-
PaulH **AdobeCommunityExpert** #4
Re: CFGRID and format=flash
cqk wrote:
it appears as if the cf server wasn't connected to the webserver correctly,> We have been testing CFGRID with format = flash . This works on our dev web
> server but not our live server. Both are running Wiondows Server 2000, IIS 6,
> CFMX7.0.1 with Hotfix 2
re-run the webserver connector. also make sure that the CFIDE dir is accessible.
PaulH **AdobeCommunityExpert** Guest



Reply With Quote

