У меня было рабочее приложение, которое использует диалог jquery ui. Я хотел сделать диалог перетаскиваемым. Насколько мне известно, нужно только jquery.ui.draggable.js script. Поэтому я добавил его к скриптам, которые я использую, но знаю, что получаю следующую ошибку (как показано в консоли firebug): base не является конструктором Соответствующая строка в jquery.ui.widget.js:
var basePrototype = new base();
Вот как я добавляю все скрипты:
<script type="text/javascript" src="/media/development-bundle/jquery-1.4.2.js"></script>
<script type="text/javascript" src="/media/development-bundle/ui/jquery.ui.core.js"></script>
<script type="text/javascript" src="/media/development-bundle/ui/jquery.ui.widget.js"></script>
<script type="text/javascript" src="/media/development-bundle/ui/jquery.ui.draggable.js"></script>
<script type="text/javascript" src="/media/development-bundle/ui/jquery.ui.position.js"></script>
<script type="text/javascript" src="/media/development-bundle/ui/jquery.ui.autocomplete.js"></script>
<script type="text/javascript" src="/media/development-bundle/ui/jquery.ui.dialog.js"></script>
Я что-то делаю неправильно? или это проблема с jquery?
Заранее благодарим за помощь