Here's my form's code
<cfform name="displayProjects" method="post" preservedata="yes" format="flash" action="" id="myformid" width="800" height="1000" wmode="transparent">
<cfformgroup type="panel">
<cfformgroup type="vbox" width="800" label="Coastal Projects">
<cfgrid name="project" format="flash" colheaderbold="yes"query="projectNames" height="500" style="padding-left:150px">
<cfgridcolumn header="Project Name" name="txtProjectName">
</cfgrid>
</cfformgroup>
</cfformgroup>
</cfform>
how do I wordWrap the Project Name column? or make it's width grow dynamically???
In order to get a cell's text to wrap, you have to adding this style before the grid:
<style type="text/css">
.x-grid3-cell-inner { white-space:normal;}
</style>