tabalinas / jsgrid

Lightweight Grid jQuery Plugin
http://js-grid.com
MIT License
1.52k stars 352 forks source link

jsGrid does not show in IE 11.0 #1343

Open doooooo opened 4 years ago

doooooo commented 4 years ago

This jsGrid works perferctly in Chrome and Firefox, yet it doesn't show in IE 11.0. please help.

`$("#jsGrid").jsGrid({ height: "auto", width: "100%",

    filtering: true,
    editing: true,
    sorting: true,
    paging: true,
    autoload: true,
    //pageLoading: false,

    onItemUpdating: function(args) {
        //some code here
    },
    pageSize: 10,
    pageButtonCount: 5,

    deleteConfirm: "Do you really want to delete the client?",

    controller: {
        loadData: function(filter) {
            //some code here

        },
        updateItem: function(item){
        },
    },

    fields: fields
});

});`