<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:clearspace="http://www.jivesoftware.com/xmlns/jive/rss" version="2.0">
  <channel>
    <title>Adobe Community: Message List - cfgrid (type=flash) - how to capture in-cell keystroke event?</title>
    <link>https://forums.adobe.com/community/coldfusion/coldfusion_forms?view=discussions</link>
    <description>Most recent forum messages</description>
    <language>en</language>
    <pubDate>Thu, 15 Nov 2012 19:31:11 GMT</pubDate>
    <generator>Jive Engage 7.0.0.1  (http://jivesoftware.com/products/)</generator>
    <dc:date>2012-11-15T19:31:11Z</dc:date>
    <dc:language>en</dc:language>
    <item>
      <title>Re: cfgrid (type=flash) - how to capture in-cell keystroke event?</title>
      <link>https://forums.adobe.com/message/4850475?tstart=0#4850475</link>
      <description>&lt;!-- [DocumentBodyStart:57f86a55-1f93-4d04-9c4c-3ea5be0b4aae] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;The silence means that I'm just a busy guy ;-]&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks for all your efforts, but I've come to the conclusion that the individual cells within a cfgrid like this simply do not expose an event we can use to sense keystrokes. All of these attempts only "see any action" when one navigates beyond the individual cell's control. I wanted to know when a user tapped a key WITHIN a cell.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I'll bet the original thinking - when this component was created - was to provide all those nifty array elements in the submitted form scope - which tell us which rows and cells were changed and why ("RowStatus.Action" et.al.). They assumed &lt;em&gt;that&lt;/em&gt; negated the need for complex scripted grid event management &amp;amp; bubbling in their minds? Just a guess.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The only problem with that original design is that those nifty array elements do not appear to &lt;em&gt;even exist&lt;/em&gt; until the grid is actually submitted in a traditional manner. I don't see them available via script - for use in a function call to a remote object submission for example.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;So my workaround has been to convince the client to either (re)process every data point in the grid back to the database all over again (a non-starter) - or dispense with the fancy-schmancy ajax-esque RO submit and just post the cfform/grid old-school (where we can actually see which data to process).&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:57f86a55-1f93-4d04-9c4c-3ea5be0b4aae] --&gt;&lt;img src='/beacon?t=1415919931391' /&gt;</description>
      <pubDate>Thu, 15 Nov 2012 19:31:11 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/4850475?tstart=0#4850475</guid>
      <dc:date>2012-11-15T19:31:11Z</dc:date>
      <clearspace:dateToText>1 year 12 months ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: cfgrid (type=flash) - how to capture in-cell keystroke event?</title>
      <link>https://forums.adobe.com/message/4849023?tstart=0#4849023</link>
      <description>&lt;!-- [DocumentBodyStart:7fa24171-88b0-4915-a2f1-7a907225c432] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Does the silence mean you finally finished it off? If not, here then is one solution.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;You already have the string typed in by the user. All you have to do to get the last keystoke is pick out the last character of the string! Something like this&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;function registerKeyStrokes(){&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var listener:Object = {};&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var changeField=changeResult;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; listener.cellEdit = function(evt:Object):Void {&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var str:String = evt.target.selectedItem.city;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; changeField.text = 'Last keystroke is: ' + str.substr(str.length-1,1);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; geoGrid.addEventListener('cellEdit',listener);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:7fa24171-88b0-4915-a2f1-7a907225c432] --&gt;</description>
      <pubDate>Thu, 15 Nov 2012 09:24:58 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/4849023?tstart=0#4849023</guid>
      <dc:date>2012-11-15T09:24:58Z</dc:date>
      <clearspace:dateToText>1 year 12 months ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: cfgrid (type=flash) - how to capture in-cell keystroke event?</title>
      <link>https://forums.adobe.com/message/4844743?tstart=0#4844743</link>
      <description>&lt;!-- [DocumentBodyStart:fb3458be-14ee-4d1c-a926-6df65cd9fda3] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Here is a start. I have stayed with the form simply because it is now familiar. &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;In this example, the value of the edited &lt;em&gt;city &lt;/em&gt;field is copied into the &lt;em&gt;changeResult &lt;/em&gt;input field.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;lt;cfset cities = "Rome,Athens,Canberra,Brasilia,Paris"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfset countries = "Italy,Greece,Australia,Brazil,France"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfset dateObj = arrayNew(1)&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfset dateObj[1] = createdate(2009,11,21)&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfset dateObj[2] = createdate(2010,2,3)&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfset dateObj[3] = createdate(2009,4,14)&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfset dateObj[4] = createdate(2010,5,23)&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfset dateObj[5] = createdate(2011,11,11)&amp;gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;lt;cfform name="cities" format="flash"&amp;gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;lt;cfformitem type="script"&amp;gt;&lt;/p&gt;&lt;p&gt;function registerKeyStrokes(){&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var listener:Object = {};&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var changeField=changeResult;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; listener.cellEdit = function(evt:Object):Void {&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; changeField.text = evt.target.selectedItem.city;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; geoGrid.addEventListener('cellEdit',listener);&lt;/p&gt;&lt;p&gt;}&lt;/p&gt;&lt;p&gt;&amp;lt;/cfformitem&amp;gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;lt;cfgrid name="geoGrid" selectmode="edit" format="flash" onchange="registerKeyStrokes()"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfgridcolumn name="city" header="City" &amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfgridcolumn name="country" header="Country"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfgridcolumn name="travelDate" header="Travel Date"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfloop index="i" from="1" to="#ListLen(cities)#"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;cfgridrow data ="#ListGetAt(cities, i)#, #ListGetAt(countries, i)#, #dateFormat(dateObj[i],'dd mmm yyyy')#"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;/cfloop&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;/cfgrid&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfinput name="changeResult" type="text" size="60"&amp;gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;lt;/cfform&amp;gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:fb3458be-14ee-4d1c-a926-6df65cd9fda3] --&gt;</description>
      <pubDate>Tue, 13 Nov 2012 21:14:02 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/4844743?tstart=0#4844743</guid>
      <dc:date>2012-11-13T21:14:02Z</dc:date>
      <clearspace:dateToText>1 year 12 months ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: cfgrid (type=flash) - how to capture in-cell keystroke event?</title>
      <link>https://forums.adobe.com/message/4841736?tstart=0#4841736</link>
      <description>&lt;!-- [DocumentBodyStart:045ff805-2136-4a9b-953a-c8c4cacd10f6] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I now understand what you're looking for. I'll have another go. &lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:045ff805-2136-4a9b-953a-c8c4cacd10f6] --&gt;</description>
      <pubDate>Mon, 12 Nov 2012 20:39:18 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/4841736?tstart=0#4841736</guid>
      <dc:date>2012-11-12T20:39:18Z</dc:date>
      <clearspace:dateToText>2 years 15 hours ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: cfgrid (type=flash) - how to capture in-cell keystroke event?</title>
      <link>https://forums.adobe.com/message/4841335?tstart=0#4841335</link>
      <description>&lt;!-- [DocumentBodyStart:18ba01ea-71ef-4729-a62e-6e745fc8c9aa] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Thanks for the response, BKBK!&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;However, your example will fire an event when one clicks on a cell - but does not provide insight into the event of typing &lt;span style="text-decoration: underline;"&gt;inside a cell&lt;/span&gt;. This grid is not even editable.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I've extended your example below to demonstrate the issue. The desire is for the text input below the grid to update with a new "last pressed" key code with &lt;em&gt;every stroke made&lt;/em&gt; inside a grid cell. But when executed, it only fires when one clicks between cells using the mouse.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks again.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;lt;cfset cities = "Rome,Athens,Canberra,Brasilia,Paris"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfset countries = "Italy,Greece,Australia,Brazil,France"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfset dateObj = arrayNew(1)&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfset dateObj[1] = createdate(2009,11,21)&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfset dateObj[2] = createdate(2010,2,3)&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfset dateObj[3] = createdate(2009,4,14)&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfset dateObj[4] = createdate(2010,5,23)&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfset dateObj[5] = createdate(2011,11,11)&amp;gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;lt;cfform name="cities" format="flash"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;cfformitem type="script"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; function showItinerary(){&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; changeResult.text = 'last key code is:' + Key.getCode();&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/cfformitem&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;cfgrid name="geoGrid" onChange="showItinerary();" selectmode="edit"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;cfgridcolumn name="city" header="City"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;cfgridcolumn name="country" header="Country"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;cfgridcolumn name="travelDate" header="Travel Date"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;cfloop index="i" from="1" to="#ListLen(cities)#"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;cfgridrow data ="#ListGetAt(cities, i)#, #ListGetAt(countries, i)#, #dateFormat(dateObj[i],'dd mmm yyyy')#"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/cfloop&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/cfgrid&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;cfinput name="changeResult" type="text" size="60" /&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;/cfform&amp;gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:18ba01ea-71ef-4729-a62e-6e745fc8c9aa] --&gt;</description>
      <pubDate>Mon, 12 Nov 2012 18:53:23 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/4841335?tstart=0#4841335</guid>
      <dc:date>2012-11-12T18:53:23Z</dc:date>
      <clearspace:dateToText>2 years 17 hours ago</clearspace:dateToText>
      <clearspace:replyCount>4</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: cfgrid (type=flash) - how to capture in-cell keystroke event?</title>
      <link>https://forums.adobe.com/message/4840437?tstart=0#4840437</link>
      <description>&lt;!-- [DocumentBodyStart:a7e03d4d-be63-44c7-9912-f63c17ac03c9] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;&amp;lt;cfset cities = "Rome,Athens,Canberra,Brasilia,Paris"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfset countries = "Italy,Greece,Australia,Brazil,France"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfset dateObj = arrayNew(1)&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfset dateObj[1] = createdate(2009,11,21)&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfset dateObj[2] = createdate(2010,2,3)&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfset dateObj[3] = createdate(2009,4,14)&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfset dateObj[4] = createdate(2010,5,23)&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfset dateObj[5] = createdate(2011,11,11)&amp;gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;lt;cfform name="cities" format="flash"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/p&gt;&lt;p&gt;&amp;lt;cfformitem type="script"&amp;gt;&lt;/p&gt;&lt;p&gt;function showItinerary(){&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; alert('City:' + geoGrid.selectedItem.city + ', Travel date:' + geoGrid.selectedItem.travelDate);&lt;/p&gt;&lt;p&gt;}&lt;/p&gt;&lt;p&gt;&amp;lt;/cfformitem&amp;gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;lt;cfgrid name="geoGrid" onChange="showItinerary();"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfgridcolumn name="city" header="City"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfgridcolumn name="country" header="Country"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfgridcolumn name="travelDate" header="Travel Date"&amp;gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;lt;cfloop index="i" from="1" to="#ListLen(cities)#"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfgridrow data ="#ListGetAt(cities, i)#, #ListGetAt(countries, i)#, #dateFormat(dateObj[i],'dd mmm yyyy')#"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;/cfloop&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;/cfgrid&amp;gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;lt;/cfform&amp;gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:a7e03d4d-be63-44c7-9912-f63c17ac03c9] --&gt;</description>
      <pubDate>Mon, 12 Nov 2012 14:20:23 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/4840437?tstart=0#4840437</guid>
      <dc:date>2012-11-12T14:20:23Z</dc:date>
      <clearspace:dateToText>2 years 21 hours ago</clearspace:dateToText>
      <clearspace:replyCount>5</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>cfgrid (type=flash) - how to capture in-cell keystroke event?</title>
      <link>https://forums.adobe.com/message/4833918?tstart=0#4833918</link>
      <description>&lt;!-- [DocumentBodyStart:c2046734-6afa-49fd-844f-594f553b5b44] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Yep, I'm maintaining a Flash type cfform that was authored a few years ago. The application is on CF9 now.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;How can my application sense when a user has keypressed within a CFGRID cell?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I've introduced a change event listener to the cfgrid via the onchange tag attribute. The event fires when the mouse clicks within any cell.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;But keyboard navigation or individual cell keystrokes to not trigger a change, even when traversing to another cell via Tab or Enter.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I've also tried using the keyDown event, but that is only triggered when navigating the overall grid. It does not fire when a cell has focus - the user is typing within it.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;keyUp doesn't work either, nor does keypress, keydown, keyup or any of my other exhaustive deriviation attempts. I've tried to locate a complete list of AS 2.0 event names, but have had no luck, even within Adobe's own pdf docs. If anyone has an example from their own personal museam, I'd love to see it.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Did I mention that this is a Flash cfform? Thought so...&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:c2046734-6afa-49fd-844f-594f553b5b44] --&gt;</description>
      <pubDate>Thu, 08 Nov 2012 20:42:09 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/4833918?tstart=0#4833918</guid>
      <dc:date>2012-11-08T20:42:09Z</dc:date>
      <clearspace:dateToText>2 years 5 days ago</clearspace:dateToText>
      <clearspace:replyCount>6</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
  </channel>
</rss>

