cfform/cfgrid form submit error

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

  1. #1

    Default cfform/cfgrid form submit error

    I have a simple grid:

    <cfgrid name="testGrid" format="flash" query="getHistory">
    <cfgridcolumn name="idno" header="Employee ID">
    </cfgrid>

    The grid is populated just fine. When I submit the form instead of seeing the
    form variables I am getting the following error:

    The submitted cfgrid form field is corrupt (name: __CFGRID__NEWFORM__TESTGRID
    value: __CFGRID__COLUMN__CFGRIDROWINDEX
    __CFGRID__DATA__1__CFGRID__COLUMN__IDNO__CFGRID__D ATA__3000080)

    I've changed columns in the query and no difference. The error still occurs.
    Any ideas on where this error comes from?
    We are using CFMX 7.02 on a Windows 2000 Server. Query is coming from Oracle
    8i.
    thanks.

    Mark

    Mark Forsberg Guest

  2. Similar Questions and Discussions

    1. cfform cfgrid
      Hey all. If I use a cfgrid on a cfform page type="flash" How do I used the data submitted to "insert' page. For example.. a user enters data...
    2. CFform Button Submit.
      I have a form works will however I have noticed that the submit button doesnt work when the enter key is hit, the button is selected (hilited), is...
    3. flash cfgrid in html cfform bug
      I have a cfform in html format on my page, I want a cfgrid in flashformat in that form. No problem thus far. When I submit the form, and dump the...
    4. Flash Page Navigation - CFFORM/ CFGRID
      Actually this would require updates to the grid tag as well. Right now the grid loads all of the query rows into it, so this would need to change so...
    5. PHP gives error when using image for submit form!
      Hello, I want use instead of the standard submit-button a image! This don't work, he gives a error on file php4ts.dll, then he is closing the...
  3. #2

    Default Re: cfform/cfgrid form submit error

    I found the problem. I was calling a custom tag in application.cfm. This is a
    CF5 app being upgraded.

    <cf_inputFilter scopes="form,url" chars="%&;=" tags="script,object">

    Apparently this breaks the posting action of a Flash Form. I removed the code
    and now life is good again.

    Mark

    Mark Forsberg Guest

  4. #3

    Default RE: cfform/cfgrid form submit error

    Thanks to mark's comment I fixed my issue. I was doing something similar with an input filter, it automatically trimmed all form input, and set it back to itself. The CFGRID doesn't like this. I took out the input filter and no more corrupt form.

    Thanks Mark

    Cor

    From [url]http://www.developmentnow.com/g/66_2007_4_0_0_959371/cfformcfgrid-form-submit-error.ht[/url]

    Posted via DevelopmentNow.com Group
    [url]http://www.developmentnow.com[/url]
    Cory Akins 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