php + jqgrid + export to excel

后端 未结 6 1536
长情又很酷
长情又很酷 2020-12-08 05:19

Somebody knows a way to export the data from a jqgrid to excel?

I want to do a report using this jqgrid that i think is awsome. But i need to save or print this rep

6条回答
  •  太阳男子
    2020-12-08 05:47

    create a form and a hidden element with the name "csvBuffer". This element gets set by the function. I had to change the line

    html = html+"\n"
    

    to

    html = html+"\\n"
    

    in order to escape it properly.

提交回复
热议问题