cfgrid inside a <cfoutput query="myQuery" group="GROUP">

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

  1. #1

    Default cfgrid inside a <cfoutput query="myQuery" group="GROUP">

    Is it possible to use a cfgrid inside a cfoutput with a query and a group. When
    I try do that I get the following error: INVALID_CHARACTER_ERR: An invalid
    or illegal XML character is specified. The error occurred in
    E:\CFusionMX7\wwwroot\PowerCash\client\position.cf m: line 37 35 :
    </cfformgroup> 36 : </cfoutput> 37 : </cfformgroup> 38 : </cfform> Here is
    the code <cfform format='Flash' width='100%' height='100%' timeout='1800'>
    <cfformgroup type='tabNavigator'> <cfoutput query='allAccounts'
    group='CN'> <cfformgroup type='page' label='#COUNTRY#'> <cfgrid
    name='accountsGrid+#USRPFX#+#ACCID#' rowheaders='true'> <cfgridcolumn
    name='accno' header='Account Number' mask='999999-999-999-999-99'>
    <cfgridcolumn name='bookbal' header='Balance' dataalign='right'> <cfloop
    query='allAccounts'> <cfgridrow data='#accno#,#bal#'>
    </cfloop> </cfgrid> </cfformgroup> </cfoutput>
    </cfformgroup> </cfform>

    DavidGhous Guest

  2. Similar Questions and Discussions

    1. Change settings to "Always Allow" via Group Policy
      We upgraded our Flash Players from v6 to v8 (I know v9 is out we haven't go there yet) a couple months ago, and we've just noticed that we can not...
    2. "group by" - order of rows in group
      this is simple example: TABLE SCHEMA: create table my_table( id int unsigned not null auto_increment primary key, project varchar(255) not...
    3. cfoutput cfquery "group processing" error
      I am attempting to write data to an html table from three different Access tables. I have three (3) queries in the cftransaction, each later query...
    4. Elements "pasted inside" change position when parent group is re-sized
      Anyone else have this problem? I've got a fairly complex logo -- all vector elements created in FH (11.01). The group includes several...
    5. Debian Equivalent of Group "Wheel"?
      Dear List, Iım a newcomer and tried to find this topic in the archives, but I had trouble using Glimpse to filter out ³wheel mouse². I hope Iım...
  3. #2

    Default Re: cfgrid inside a <cfoutput query="myQuery"group="GROUP">

    Can someone from Macromedia address this issue? thx.
    DavidGhous 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