Hi,
I'm developing a plugin to extend datepicker functionality. I want to use the same libraries as the standard jQuery datepicker provided from APEX, I'm using the following code to include standard library inside my plugin:
apex_javascript.add_library(
p_name => 'jquery.ui.datepicker-en',
p_directory => apex_application.g_image_prefix || 'libraries/jquery-ui/1.8.14/ui/i18n/oracle/',
p_version => null
);
Is there any susbtitution string in order to replace full jquery librarly paths? Is there any other way to include standard jQuery libraries provided from APEX? This way clearly won't work in future versions of APEX...
Thanks