CFGRID and format=flash

Ask a Question related to Coldfusion Flash Integration, Design and Development.

  1. #1

    Default CFGRID and format=flash

    We have been testing CFGRID with format = flash . This works on our dev web
    server but not our live server. Both are running Wiondows Server 2000, IIS 6,
    CFMX7.0.1 with Hotfix 2

    On the dev server the column headings and data appear in the flash grid. But
    on the live server only the column headings appear and the flash grid appears
    but no data yet is appears to load the data but does not show the data.

    you can test this at [url]http://www.ametsoc.org/flashtest3.cfm[/url]

    The code is


    <!--- Query the database to fill up the grid. --->
    <cfquery name="qry_states" DATASOURCE="#dbdsn#" USERNAME="#dbuid#"
    PASSWORD="#dbpwd#">
    SELECT * from States
    ORDER BY StateAbbrev
    </cfquery>
    <h3>cfgrid Example</h3>
    <I>Using flash as format - on live server only the column names show up but
    not the data</i>
    <!--- cfgrid must be inside a cfform tag. --->
    <cfform name="frmGrid" method="post" action="">
    <cfgrid name = "FirstGrid"
    height="320" width="580"
    query = "qry_states"
    font="Tahoma" fontsize="12" appendkey="yes" griddataalign="left"
    gridlines="yes" rowheaderalign="left" colheaderalign="left" selectmode="browse"
    enabled="yes" visible="yes" format="flash" autowidth="true">
    </cfgrid>
    </cfform>

    cqk Guest

  2. Similar Questions and Discussions

    1. cfgrid/ flash and number format
      Can someone please explain why the following does not use the numberformat when format=flash? Yet when I change it to format=html it does act on...
    2. cfgrid half loading in flash format
      i'm attempting to load a cfgrid in flash format. the grid will load about half way....all the headers will load but the data will not. the little...
    3. Misaligned data in cfgrid using flash format
      I've got columns of data pulled from a mysql db with different data types into a cfgrid with the formate set as flash. It seems that the datetime...
    4. CFGRID format='flash' masking a number Field
      Home do I format a Number field from a query in a grid format='flash'? <gridcolumn field='qty' header='Quantity' how do I use the mask?
    5. CF7 flash cfgrid date format
      the problem is the 1957 at the end, CF doesn't like any date data after the GMT portion., you'll need reformat the date in your SQL statement, then...
  3. #2

    Default Re: CFGRID and format=flash

    I think you forget to add cfgridcolumn my friend !!

    <cfgrid name="test" format="Flash" query="test">
    <cfgridcolumn name="itemA">
    <cfgridcolumn name="itemB">
    <cfgridcolumn name="itemC">
    </cfgrid>

    Good luck


    Al Parvar Guest

  4. #3

    Default Re: CFGRID and format=flash

    Well I thought that too, but the exact code that I show works perfectly on our
    development web server. Even with the column name specified the code works
    only on the development server

    compare dev server URL <a target=_blank class=ftalternatingbarlinklarge
    href="http://web2.ametsoc.org/flashtest3.cfm

    to">[url]http://web2.ametsoc.org/flashtest3.cfm[/url]

    to</a> the live server URL <a target=_blank class=ftalternatingbarlinklarge
    href="http://www.ametsoc.org/flashtest3.cfm

    ">[url]http://www.ametsoc.org/flashtest3.cfm[/url]

    </a>

    cqk Guest

  5. #4

    Default Re: CFGRID and format=flash

    cqk wrote:
    > We have been testing CFGRID with format = flash . This works on our dev web
    > server but not our live server. Both are running Wiondows Server 2000, IIS 6,
    > CFMX7.0.1 with Hotfix 2
    it appears as if the cf server wasn't connected to the webserver correctly,
    re-run the webserver connector. also make sure that the CFIDE dir is accessible.
    PaulH **AdobeCommunityExpert** Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139