Duplication link have problem use onEsc: 'blur'

Duplication link have problem use onEsc: 'blur'

hyklhykl Posts: 48Questions: 19Answers: 5
edited March 2016 in Free community support

Form-Options have type: onEsc - blur, create, edit have no problems but for duplicate link has problem:

$('a.editor_duplicate').on('click', function (e) {
                    e.preventDefault();
                    var values = editor.edit(table.row({
                        selected: true}).index(), false).val();
                    editor.create({
                        title: 'DUPLICATE THIS RECORD',
                        buttons: 'Create record',
                        onEsc: 'blur'}).set(values);     
                });

Where is this problem?
Next: For Delete record has problem too.

This discussion has been closed.