Strange formatting with cfgrid
Hey folks,
Haven't played with CF in a long time. Thought I'd mess with CF9 to build a new app to see what the new features are. I'm trying to use cfgrid for the first time and it just looks flat-out wrong.
Anybody run into cfgrids that look like this? Any idea why it's formatting like this? 
Code:
<cfoutput>
<cfform name="projectForm" action="index.cfm" format="html">
<cfgrid
format="html"
name="projectGrid"
bind="cfc:Test.components.Project.getProjects({cfgridpage},{cfgridpagesize},{cfgridsortcolumn},{cfgridsortdirection})">
<cfgridcolumn name="ID" display="false" />
<cfgridcolumn name="PROJECTNAME" header="Vendor" />
<cfgridcolumn name="TEAMNAME" header="Team">
</cfgrid>
</cfform>
</cfoutput>
