Я разработал веб-страницу, которая позволяет перетаскивать элементы в элементы с помощью функций js & jQuery.Работает отлично.Теперь я использовал CKEditor и интегрирован с этой веб-страницей, но я не могу перетаскивать элементы, почему?
простая страница : это работает и я могу перетаскивать элементы
<html> <head>
<link rel="stylesheet" href="jquery.ui.all.css"/>
<script src=jquery.js"> </script>
<script src="jquery_Drag_Drop.js"> </script>
<head> <body>
<div id="main_div_of_the_page">
<div id="element_1">
<input type="button" class="manage_to_all_properties_src"/>
</div>
<div id="element_2">
<input type="button" class="manage_to_all_properties_src"/>
</div>
</div>
</body> </html>
Теперь я интегрирую эту страницу с CKEditorDrag & drop не работает, почему?)
<html> <head>
<script src=ckeditor.js"> </script>
<script src=jquery.js"> </script>
<script src="jquery_Drag_Drop.js"> </script>
<script type = "text/javascript">
window.onload = function() {
CKEDITOR.replace( 'main_div_of_the_page' );
} </script>
<head> <body>
<div id="main_div_of_the_page">
// Same innerHTML as above
</div>
</body> </html>
Теперь я изменил config.js
CKEditor
CKEDITOR.editorConfig = function( config )
{
config.contentsCss = 'jquery.ui.all.csss';
}