tags:

views:

129

answers:

1

Can any one help me out how to export the jquery grid data to excel?

i have inserted one button call export?

$("#Export").click(function(){
    I am little confuse what should I write?
});

thanks

A: 

I think you can't do it with pure jQuery or javascript (maybe there is some ugly IE/ActiveX solution, but i want to have nothing to do with it :P ). I think you need to use some server side scripting. Here is a solution with PHP: http://phpexcel.codeplex.com/

meo