Skip to content

Performance issues in IE 11 #740

@azhuravs

Description

@azhuravs

Any ideas why setting value to editor in IE 11
editor.setValue(configurationJSON);
takes a lot of time (16 sec in my case) against miliseconds in Chrome and FF?

    //Init JSON Editor
    var editor = new JSONEditor(document.getElementById('editor_holder'), {
        ajax: false,
        disable_properties: true,
        disable_array_reorder: true,
        disable_edit_json: true,
        schema: schema
    });

    editor.on('ready', function () {
        reload();
    });

     var reload = function () {
         var configurationJSON = JSON.parse('json val');
        editor.setValue(configurationJSON);
    }

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions