cfgrid not displaying data

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

  1. #1

    Default Re: cfgrid not displaying data

    Ask your host to check the CFIDE mapping. I had a similar issue. It should be mapped by default, but sometimes it is not. Hope that helps!
    tommyviper Guest

  2. Similar Questions and Discussions

    1. Cfgrid not displaying updated data till mouse over
      Hi Everyone, I have a cfgrid at the top the page. Users select a record and edits it on the button portion of the page. I use flash remoting to...
    2. CFGRID Not Displaying - Urgent
      http://69.2.212.105/ext/sl/manage_leads.cfm?User_ID=1 Why doesn't my grid appear? <cfform action="#CGI.SCRIPT_NAME#" method="post"...
    3. CFGRID - Problems displaying in IE
      Is anyone having problems getting the CFGRID (with the java plugin option) to display on IE. I'm finding that its working ok on Windows 2k boxes,...
    4. Flash cfgrid not displaying
      I am trying to populate the cfgrid with the query information. The browser isn't displaying the flash grid but will display the grid if I change...
    5. Format cfgrid data
      One of the fields I want to display in a cfgrid is a Social Security number. I want to mask it, and only show the last 4 digits. I.e. ...
  3. #2

    Default cfgrid not displaying data

    I'm using cfgrid to display a query of queries. cfgrid as type applet displays
    everything perfectly. as flash only two columns display. Also i can't change
    the format of the number in flash while I can in applet. The mask attribute
    doesn't seem to work. Code below of a smaller grid that doesn't work either.

    query

    <CFQUERY DBTYPE="query" NAME="all_oil">
    SELECT get_total_oil.yyyy, get_total_oil.ievalue as total,
    get_crd_prod.ievalue as crude
    FROM get_total_oil,get_crd_prod
    where get_total_oil.yyyy=get_crd_prod.yyyy
    order by YYYY
    </CFQUERY>

    <CFQUERY DBTYPE="query" NAME="all_oil2">
    SELECT all_oil.yyyy, all_oil.total,all_oil.crude , get_conc.ievalue as conc
    FROM get_conc, all_oil
    where all_oil.yyyy=get_conc.yyyy
    order by YYYY desc
    </CFQUERY>

    <cfform format="flash">
    <cfgrid format="flash" query="all_oil" name="test" >
    <cfgridcolumn name="yyyy" header="Year" width="40">
    <cfgridcolumn name="total" header="Total Oil Production">
    <cfgridcolumn name="crude" header="Crude Production" >
    </cfgrid>
    </cfgrid>

    CF_Hack Guest

  4. #3

    Default Re: cfgrid not displaying data

    Reason this one doesn't work is because you have two </cfgrid> closing tags.

    You also don't need to define the grid as format flash if the form is format
    flash.

    According to the docs, mask only works with Flash, not applet, wonder if that
    is a typo. Pg 200 of Reference Vol 1.

    And if you want the grid to use the QoQ all_oil2, you should specify that name
    in the <cfgrid query tag.>


    Chuck1411 Guest

  5. #4

    Default Re: cfgrid not displaying data

    [q]Originally posted by: Chuck1411
    Reason this one doesn't work is because you have two </cfgrid> closing tags.

    Typo. My code has a closing </cfform> tag

    You also don't need to define the grid as format flash if the form is format
    flash.

    This doesn't matter since it doesn't work either way.

    According to the docs, mask only works with Flash, not applet, wonder if that
    is a typo. Pg 200 of Reference Vol 1.

    That is correct. Doesn't matter still no data either way.

    And if you want the grid to use the QoQ all_oil2, you should specify that name
    in the <cfgrid query tag.>

    Either way it doesn't work




    CF_Hack 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