(new) flash cdfrid with multiple choices
My cfgrid allows the user to select several options. What I need to know is how to capture those selections. Here's the grid code:
<cfgrid name='art_grid' format='flash' selectOnLode='no' selectMode='edit' query='GetArticles'>
<cfgridcolumn name='ArticleIndex' select='yes' values='1' type='boolean' display='yes'>
<cfgridcolumn name='ArticleName' select='no'>
</cfgrid>
I've tried a cfselect and a cfset (both with selectedItem and selectedIndex); both receiving the same error: You have attempted to dereference a scalar variable of type class java.lang.String as a structure with members.
I created a structure to hold the responses and then tried to populate it with:
<cfloop collection='#art_grid.selectedItem# item='i'>
<cfset ArtStruct='#art_grid.selectedItem.ArticleName#'>
</cfloop>
What should I use instead? (Yes, I googled the error message and this is where I got the structure idea.)
