we have a form in a 7.1.8 install and it only accepts up to 15 fields. After that it shows a "Failed to Save Form" message. We've tried all kinds of vairations including, diffrent label/field type combinations, new field sets, new steps, etc.
Has anyone else seen this? Perhaps there's a recommended nightly for it?
Found an OLD post that mentioned maxJsonLength. Adding this fixed the issue:
<system.web.extensions>
<scripting>
<webServices>
<!-- Update this value to change the value to a larger value that can accommodate your JSON Strings -->
<jsonSerialization maxJsonLength="99999999" />
</webServices>
</scripting>
</system.web.extensions>
Failed to save form - number of field max
Hi gang,
we have a form in a 7.1.8 install and it only accepts up to 15 fields. After that it shows a "Failed to Save Form" message. We've tried all kinds of vairations including, diffrent label/field type combinations, new field sets, new steps, etc.
Has anyone else seen this? Perhaps there's a recommended nightly for it?
Thanks,
Nik
Found an OLD post that mentioned maxJsonLength. Adding this fixed the issue:
Thanks,
Nik
I had posted about this previously and erroneously thought the issue was resolved with the latest update to contour.
I am trying to create a form with only 6 fields. Adding the above to my web.config file did not work for me.
is working on a reply...