CFGRID headings do not display when CFGRID is inside a TABLE
CFGRID headers do not display when the CFGRID is inside of a TABLE. If I mouse over where the headings are supposed to be they appear. Is there a way to force them to appear when the CFGRID is inside a TABLE. If I put my CFGRID outside the table they always appear.
Here is my code: (IF I remove the Talel the headers always appear)
<TABLE>
<TR>
<TD>
<CFSET BindVaraible = 'YES'>
<CFSET GridSize = 20>
<CFGRID NAME="grid_XXXPDA" FORMAT="HTML" BINDONLOAD="#variables.BindVaraible#"
PAGESIZE="#variables.GridSize#" SELECTMODE="BROWSE"
BIND="cfc:WebServices.XXX.getData({cfgridpage},{cfgridpagesize},{cfgridsortcolumn},{cfgridsortdirection})"
SELECTONLOAD="FALSE"
COLHEADERBOLD="YES" COLHEADERS="YES" ROWHEADERS="NO"
STRIPEROWS="YES" STRIPEROWCOLOR="##E8E8E8" APPENDKEY="No">
<CFGRIDCOLUMN NAME="SID" SELECT="No" HEADER="S ID" TYPE="NUMERIC" WIDTH="100" >
<CFGRIDCOLUMN NAME="Firstname" SELECT="No" HEADER="First Name" TYPE="STRING_NOCASE" WIDTH="85">
<CFGRIDCOLUMN NAME="Lastname" SELECT="No" HEADER="Last Name" TYPE="STRING_NOCASE" WIDTH="85">
</CFGRID>
</TD>
</TR>
</TABLE>
