Adding datatables stops jQuery dialog from working?

Adding datatables stops jQuery dialog from working?

deanparkrdeanparkr Posts: 4Questions: 2Answers: 0

I have a table which I would like to add datatables to. However, currently the existing table has hyperlinks which open a jQuery dialog.

I am finding that when I add datatables to the table it is no longer possible to open the jquery dialog anymore. Consider this jsfiddle:

https://jsfiddle.net/deanparkr/2o5hq1fp/

Pressing the "Test Link" does not show the dialog. If I remove the datatables code:

$(document).ready(function () {
$('#table').DataTable();
});

The jQuery dialog opens fine. Is there any way to have a jQuery dialog box open from a hyperlink in a datatable?

This discussion has been closed.