Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Problem using CFGRID on ACCORDION page

Status
Not open for further replies.

MC77

Technical User
Jul 24, 2001
8
0
0
US
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>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top