I have a project where an additional jQuery library is loaded. The bind to "dialogopen" in addDownloadXLSXIcon is therefor binding to the incorrect jQuery instance.
function addDownloadXLSXIcon(plugin_id_in,p_region_static_id) {
$('body').on( "dialogopen", function( event, ui ) {
You can rather easily fix this by not using $ but rather apex.jQuery. I'd advise using that everywhere.
I have a project where an additional jQuery library is loaded. The bind to
"dialogopen"
inaddDownloadXLSXIcon
is therefor binding to the incorrect jQuery instance.You can rather easily fix this by not using
$
but ratherapex.jQuery
. I'd advise using that everywhere.