My flash <cfgrid> displays a query. The query contains two columns named 'id'
and 'name'. I have one <cfgridcolumn> embeded in the <cfgrid> to display the
values of the 'name' column. I use a hidden form field to capture the value of
the row selected by the user so that I can send the currently selected value of
the 'id' column back to the server like so: <cfinput type='hidden' name='id'
bind='{versionGrid.selectedItem.id}' /> This all works, but my problem is that
the <cfgrid> doesn't highlight the selected row after the postback. My question
is, how do I tell the <cfgrid> to hightlight the row with the value a specific
value of the 'id' column? If I were using a DataGrid in FlashMX 2004 I would
set the selectedIndex property of the DataGrid using ActionScript. How do I
set the initially selected row of a <cfgrid> in ColdFusion MX7?