Issue Including Elfinder And Jquery Ui
I'm trying to setup an elFinder window on my website. So I downloaded the latest release of from GitHub and followed it's instructions. I included every file they asked for: <
Solution 1:
Why don't you combine the jQuery UI files into one?
Yes the order of includes does matter.
Here a working demo.
Here is the code
HTML
<head><linktype="text/css"href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.21/themes/smoothness/jquery-ui.css" /><linktype="text/css"href="http://elfinder.org/demo/css/elfinder.min.css" /></head><divid="elfinder"></div><scriptsrc="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" ></script><scriptsrc="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.21/jquery-ui.min.js"></script><scriptsrc="http://elfinder.org/demo/js/elfinder.min.js" ></script>
Javascript
$().ready(function() {
var f = $('#elfinder').elfinder({
url : '/connector'
}).elfinder('instance');
});
Solution 2:
have you tried changing the order of inclusion?
<!-- elFinder --><scripttype="text/javascript"src="../includes/elfinder/js/elfinder.min.js"></script><scripttype="text/javascript"src="../includes/elfinder/js/i18n/elfinder.nl.js"></script><!-- JQuery UI --><scripttype="text/javascript"src="../includes/js/jquery-ui/development-bundle/ui/jquery.ui.core.js"></script><scripttype="text/javascript"src="../includes/js/jquery-ui/development-bundle/ui/jquery.ui.timepicker.js"></script><scripttype="text/javascript"src="../includes/js/jquery-ui/development-bundle/ui/jquery.ui.draggable.js"></script><scripttype="text/javascript"src="../includes/js/jquery-ui/development-bundle/ui/jquery.ui.droppable.js"></script><scripttype="text/javascript"src="../includes/js/jquery-ui/development-bundle/ui/jquery.ui.selectable.js"></script><scripttype="text/javascript"src="../includes/js/jquery-ui/development-bundle/ui/jquery.ui.resizable.js"></script><scripttype="text/javascript"src="../includes/js/jquery-ui/development-bundle/ui/jquery.ui.widget.js"></script><scripttype="text/javascript"src="../includes/js/jquery-ui/development-bundle/ui/jquery.ui.datepicker.js"></script><scripttype="text/javascript"src="../includes/js/jquery-ui/development-bundle/ui/jquery.ui.slider.js"></script><scripttype="text/javascript"src="../includes/js/jquery-ui/development-bundle/ui/jquery.ui.dialog.js"></script>
Let me know ;)
Post a Comment for "Issue Including Elfinder And Jquery Ui"