WordPress integration - modal windows of Editor not displaying
WordPress integration - modal windows of Editor not displaying
Dear Community!
I am trying to integrate the Editor with a custom WP plugin I am working on. I managed to get Datatables to work, and initialized the Editor as well, but there is an issue with New, Modify and Delete buttons.
I know that the Editor is working, because inline editing works. Also, the data is loaded from server side ajax script.
The issue is that when I press any of the three buttons, the modal editor window does not appear.
Note that this is my first time working with WP, so I might be making some beginner mistake.
I am calling the following files:
'DataTables/datatables.min.css'
'DataTables/datatables.min.js'
'DataTables/Buttons-1.5.1/css/buttons.dataTables.min.css'
'DataTables/Buttons-1.5.1/js/dataTables.buttons.min.js'
'DataTables/Select-1.2.5/css/select.dataTables.min.css'
'DataTables/Select-1.2.5/js/dataTables.select.min.js'
'DataTablesEditor/css/dataTables.editor.css'
'DataTablesEditor/js/dataTables.editor.min.js'
This is my HTML:
<table id="planifotoalbum_album" class="display" style="width:100%">
<thead>
<tr>
<th>#</th>
<th>1</th>
<th>2</th>
<th>3</th>
</tr>
</thead>
<tfoot>
<tr>
<th>#</th>
<th>1</th>
<th>2</th>
<th>3</th>
</tr>
</tfoot>
</table>
Can anyone who has had experience with WP tell me what I am missing?