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

  1. #1

    Default Populating a CFGRID

    I want to populate a cfgrid contained inside a flash form, depending on a serch
    criteria. Is there anyway to do it without using flash remoting controls? I
    have tried to follow the "Real Estate" example but I can't see the application
    working fine locally.



    ayuso_15 Guest

  2. Similar Questions and Discussions

    1. Populating a DG with a Dir Listing
      I have a datagrid that I am trying to use to display all files that have been processed by my paperless system. I know my cfc function is working...
    2. Populating an SQL query
      Another question. If anyone can give me some guidance I'd reallt appreciate it as I'm now going round in circles. I've got 12 checkboxes in a...
    3. Populating a Listbox
      Hi there, I am currently running into a somewhat weired problem and hope that this NG is able to help ;-) I have a table in a MSSQL Server in...
    4. populating DB
      hi .. ... i'm tryin to populate my SQL DB through Flash .. doesn't seem to work . it worx cool with HTML, but gives me an empty row in the DB, using...
    5. DataGridControl not populating
      Hi, I'm attempting to load raw XML(XML string), parse it and populate a text box, parse it further into an ArrayList, then set the ArrayList as...
  3. #2

    Default Re: Populating a CFGRID

    Ayuso_15,

    Hope this is what you are looking for. Here is an example of how a CFGrid
    would be if you want the result from a query. This does not need flash remote
    to get the result. You will need to have the hidden UniqueID coming from the
    Search Page.


    <cfform name="FormName" format="flash" action="Form.cfm" method="post"
    width="1000" height="440" timeout="700" style="marginTop: 0;
    background-color:##99CCFF;">
    <cfinput type="hidden" name="UniqueID"

    bind="{GridName.dataProvider[GridName.selectedIndex]['UniqueID']}"

    onChange="GridName.dataProvider.editField(GridName .selectedIndex, 'UniqueID',
    UniqueID.text);"/>
    <cfformgroup type="panel" label="Search Result" style="indicatorGap:0;
    verticalGap:5; headerColors: ##277DC6, ##50ABF7; background-color:##99CCFF">

    <cfgrid name="GridName" query="QueryName" height="325" autoWidth="yes"
    align="center" colheaderfont="verdana" colheaderfontsize="10"
    colheaderbold="yes" font="verdana" fontsize="10" rowheaders="no">
    <cfgridColumn name="UniqueID" display="no" width="200">
    <cfgridColumn name="Field1" header="Field1Title" width="200">
    <cfgridColumn name="Field2" header="Field2Title" width="200">
    </cfgrid>
    </cfformgroup>
    </cfform>


    If you need any further help, I'll be glad to help you.



    lovedrama 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