I am an ARI Data Tables pro user, and have recently noticed that there is a problem in the back-end display when editing ARI Data Tables module.
Specifically, many of the drop-down fields are not shown correctly as drop-downs (see the attached screenshot).
I have tracked down the issue, and it seems to be caused by the combination of a dependency on mootools, and the fact that mootools is loaded later, after cloner.js (instead of before).
Here is a patch that I applied to fix the issue in my installation:
Code: |
--- elementscloner.php.ORIG 2016-04-17 15:35:42.099283526 -0400
+++ elementscloner.php 2016-04-17 15:20:48.416987617 -0400
@@ -117,14 +117,15 @@
$uri = $this->_getRootAssetsUri();
$document =& JFactory::getDocument();
if (J3_0)
{
JHtml::_('jquery.framework');
+ JHtml::_('behavior.framework', true);
}
else
{
$document->addScript('//ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js');
$document->addScript($uri . 'jquery.noconflict.js');
}
|
I hope that this is helpful to others who may be encountering this issue!
Josh Diamond