-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
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
Dropzone plugin is broken after APEX 24.1 upgrade #93
Comments
The issue with getting the legacy "attribute_nn" attributes was a known regression in APEX 24.1 that affects other plugins as well, I believe this should be fixed in APEX 24.1.0-22. |
Thanks for the update @jeffreykemp |
I am using your Dropzone plugin in APEX 24.1 and I am encountering the error you mentioned. I see that you have solved it. Is there any possibility to get access to the solution? |
If you're unable to update APEX itself, a workaround you can use is to paste your Google Maps API Key directly into the plugin.
Modify the line to set the API key directly (put your actual Google Maps API key in), e.g.:
|
render_dropzone_ajax_dropzone.zip Have attached the version of the plsql that we fixed if that helps? :) paste this into the plugin Source section. There was a dropdown to change the plugin to use procedures rather than functions too. |
Thank you for the PL/SQL update @bwetherall ! Unfortunately, I am having the same problem in my application, but in APEX 23.2.6, and my version of Oracle does not include APEX_JSON. My attempts to manually recreate the get_varchar2 function result in ORA-06502 Numeric or Value Error : character string buffer too small. Does anyone have any advice for either re-writing the PL/SQL or locating a version of the APEX_JSON package I can download? |
Every version of APEX includes APEX_JSON. |
Hi Jeffrey, appreciate the quick response! |
Sorry, I didn't read your comment closely enough. It seems you're trying to run the plugin for APEX 24.1 on APEX 23.2 which didn't have the new JSON attributes. You will need to either upgrade your APEX to 24.1, or install the older version of this plugin that should work on 23.2 I think. |
Expected behavior
Customised Messages are displayed by the plugin such as "Drop files here or click to upload"
Actual behavior
"undefined" is displayed instead
APEX version (4.2.6 / 5.0.3)
APEX 24.1
We have fixed this by updating the plugin PLSQL a little bit.
p_plugin.attributes.get_varchar2('attribute_01')
If anyone needs this fix get in touch :)
The text was updated successfully, but these errors were encountered: