aftab
aftab

Reputation: 545

Kendo Export to Excel is not working in IE

I am tryng to export current grid data to excel it is working good in chrome but its not working for IE.How i can acheive this task and make it work in IE ? Any suggetion or help will be appreciated.

gridConfig.JS

toolbar: [
        {
            template: kendo.template('<a  href="" class=\'k-button k-button-icontext k-grid-add\' ng-click=\'addNewRole();\'><span class=\'k-icon k-add\'></span>Add Entity</a>')
        },
        "excel"
    ],    excel: {
        fileName: "Subcategory Export.xlsx",
       // proxyURL: "http://demos.telerik.com/kendo-ui/service/export",
        filterable: true
    },

Upvotes: 0

Views: 1269

Answers (1)

aftab
aftab

Reputation: 545

got it working its more like backend work we created one end point where we can post the grid data with base-64 and backend is sending an attachment

Upvotes: 1

Related Questions