I have developed a web project in asp.net MVC 4 were registered user can generate Reports based on their Transaction. For report generation i am using JqGrid.
Currently all the reports are generating well and i want to add a feature 'Export to Excel' in my project.
Since my generated report is very large i dont want to send the entire date to server again for generating Excel.So i am planning to generate Excel from client Side.
So have done some research in web and i found one javascript library here . I added this library in my project and it s working fine.But i found one problem here ,it wont work in IE(any version).
Is there any other javascript lib available so that i can export my report data to Excel.
Any help is appreciated.