all groups > coldfusion flash integration > may 2006 >
You're in the

coldfusion flash integration

group:

CFGRID in ACCORDION Problem


CFGRID in ACCORDION Problem mcaselle
5/8/2006 3:25:41 PM
coldfusion flash integration:
I am attempting to display a CFGRID on pages of an ACCORDION. The following
code builds the ACCORDION pages properly but does not display the GRID. Any
Suggestions?
Thanx

<cfformgroup type="accordion" label="ReportGroups">
<cfloop query="getGroups">
<cfformgroup type="page" label="#GROUP_NAME#">
<cfgrid name="objectselect" query="getObjects">
<cfgridcolumn name="objectname" header="ReportName">
</cfgrid>
</cfformgroup>
</cfloop>
</cfformgroup>
Re: CFGRID in ACCORDION Problem The ScareCrow
5/11/2006 6:38:16 AM
The problem would be because of the outer loop the grids would all have the same name, this should give an error.
You will need to give each grid a unique name.

Re: CFGRID in ACCORDION Problem mcaselle
5/18/2006 12:47:14 PM
Thanks....I went down that path and ran into another roadblock (for me at
least) Is it possible to use a variable (ie. #parm1#) for the the "name="
portion of the cfgrid? Seems t cause an invalid character error. Thanx again
for your assistance.
Re: CFGRID in ACCORDION Problem The ScareCrow
5/18/2006 11:17:20 PM
You will need to post your code. But you can do what you need to do.

AddThis Social Bookmark Button