Hi Gryphn,

I am also having the same issue with the flash grid. :( I tried to use your
format for the cfinput field and still get nothing. Here is the full code of
the test page. It is just the query and form. Why will this still not work??

--------[grid_test.cfm]-----------
<cfquery name="artists" datasource="cfartgallery">
SELECT FIRSTNAME, LASTNAME, CITY FROM ARTISTS
</cfquery>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd";>
<html>
<head>
<title>Grid Tutorial</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<cfform format="flash" width="500">

       <cfgrid name="grid" query="artists" selectmode="single">
               <cfgridcolumn name="firstname" header="First Name">
               <cfgridcolumn name="lastName">
               <cfgridcolumn name="city">
       </cfgrid>
<cfinput type="text" name="firstname" label="First Name" 
bind="{grid.selectedItem.firstname}" 
onChange="grid.dataProvider.editField(grid.selectedItem.firstname,
firstname.text);">
</cfform>

</body>
</html>
-------[end code]---------------

Thanks,
Kevin
-----Original Message-----
You may want to try your binding this way...

<cfinput type="text" name="lanesID" label="LanesID" 
bind="{dollGrid.selectedItem.lanesID}" 
onChange="dollGrid.dataProvider.editField(dollGrid.selectedItem.lanesID, 
lanesID.text);">

<cfinput type="text" name="name" label="Name" 
bind="{dollGrid.selectedItem.name}" 
onChange="dollGrid.dataProvider.editField(dollGrid.selectedItem.name, 
name.text);">

<cfinput type="text" name="price" label="Price" 
bind="{dollGrid.selectedItem.price}" 
onChange="dollGrid.dataProvider.editField(dollGrid.selectedItem.price, 
price.text);">

:)
Gryphn


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:210816
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