We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Line 57 is:
var typedItem = item[itemTypeConstructorName]();
And itemTypeConstructorName for this specific item is "asFileUploadItem".
itemTypeConstructorName
item
"asFileUploadItem"
I do have a file field on this form. Am I missing something?
The text was updated successfully, but these errors were encountered:
Hi how we can insert file upload in this form and insert google maps with location piker? thank you
Sorry, something went wrong.
can you put a video tutorial to show us how to do it please thank you
This script builds a method from the item's type adding as as a prefix and Item as a suffix as seen below:
as
Item
var itemTypeConstructorName = snakeCaseToCamelCase("AS_" + item.getType().toString() + "_ITEM");
The problem is that item has no asFileUploadItem() method (see the form API reference for item). This seems to be a long known issue with no fix in sight.
asFileUploadItem()
No branches or pull requests
Line 57 is:
And
itemTypeConstructorName
for this specificitem
is"asFileUploadItem"
.I do have a file field on this form.
Am I missing something?
The text was updated successfully, but these errors were encountered: