This is default for all js
getEditor: function(){
$( '#datatableEditor' ).remove();
var editor = $( '<div id="datatableEditor" class="popupEditor"/>' );
$( 'body' ).prepend( editor );
var dialog = $(editor).dialog({
title: 'Edit item',
modal: true,
width: 'auto',
height: 'auto'
});
Now I am writing another js. I need to override the getEditor
in my js...