Currently I'm working on Grails2.4.3 and not able to find a workaround that how I could export my JQGrid data which is in grails(.gsp) into excel/pdf and in other formats.
Asked
Active
Viewed 179 times
0
-
1Why did you not try grails export plugin?? – ABC Dec 29 '14 at 16:18
-
Thanks, I'm trying but not getting how to join grails and Jqgrid. – user3913652 Dec 30 '14 at 06:36
-
Can you share the piece of code what you tried so far? – kaluva Jan 22 '15 at 10:45
-
jQuery(tableId).jqGrid('navButtonAdd', navigationId, { caption: "Export to Excel", onClickButton: function () { //window.open ("exportToPdf_Excel"); jQuery(tableId).jqGrid('excelExport', { url: 'exportToPdf_Excel' }); } }); – user3913652 Jan 22 '15 at 13:56