The little watch is displayed when it is loading the data from the
server with Flash Remoting. Since it never stops it means the data is
not being returned. A problem with flash connecting to the flash
remoting gateway.

Do you have j2ee sessions enabled? We are diagnosing a problem about
them right now.

---nimer

-----Original Message-----
From: Ken Ferguson [mailto:[EMAIL PROTECTED]
Sent: Friday, March 18, 2005 4:03 PM
To: CF-Talk
Subject: RE: CFMX 7, CFForms, and Javascript

You are the man! Though I've not tried it yet, I think that will work
perfectly.

New question... I simply copied the example out of the livedocs onto my
machine for the cfgrid (flash) control and it works fine, but I saved it
onto my production machine and it doesn't. It loads the grid, but gives
the little flash watch forever... I can see the grid, but the simple
data never loads. I even tried it without the loop, just one row of
static data -- same result. 

Straight from the livedocs @ http://tinyurl.com/3w82w
<!--- Set two lists, each with the data for a grid column. ---> <cfset
cities = "Rome,Athens,Canberra,Brasilia,Paris">
<cfset countries = "Italy,Greece,Australia,Brazil,France">
<cfform name = "cities">
   <cfgrid name="GeoGrid" autowidth = "yes" vspace = "4" 
         height = "120" font="tahoma" rowheaders="no" format="FLASH">
      <cfgridcolumn name="City" header="City">
      <cfgridcolumn name="Country" header="Country">
      <!--- Loop through the lists using cfgridrow to poplulate the
grid. ---> 
      <cfloop index="i" from="1" to="#ListLen(cities)#">
         <cfgridrow data ="#ListGetAt(cities, i)#,#ListGetAt(countries,
i)#">
      </cfloop>
   </cfgrid><br><br>
</cfform>ff


Any ideas welcome,
--Ferg


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:199410
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to