0 Replies Latest reply: Feb 25, 2011 11:22 AM by James1220 RSS

    CFGRID quirk

    James1220 Community Member

      I was wondering if anyone else has run across this, and if so, how you corrected the issue?

      Using version CF 9.0 with the following code the cell's word wrap correctly. I'm using .x-grid3-cell-inner  {white-space:normal; } in the sytle sheet to format the cells.

       

      No problems so far.

       

      <cfform>
          <cfgrid name = "FirstGrid" format="html"
           height="600"
              width="1024"
              autowidth="yes"
              query = "qry_fullReport">
          </cfgrid>
      </cfform>

       

      Now, if I change to flash, like the example below, the formatting no longer works.

       

      <cfform>
          <cfgrid name = "FirstGrid" format="flash"
           height="600"
              width="1024"
              autowidth="yes"
              query = "qry_fullReport">
          </cfgrid>
      </cfform>

       

      Is there any good reasons to use the flash version over the html version?

       

      James