What is the proper way to attach an event handler to Editor's initComplete?
This is what I tried:
var editor = new $.fn.dataTable.Editor(editorOptions);
editor.on('initComplete', function(e) { alert('init complete') });
My callback is never executed. I suspect that the event is triggered before I get a chance to attach a handler.