Hi Peter,
Thanks for the reply. Also thank you for the pointer about the jqxcore.js. I removed that file and gained 45ms on the app.
I managed to sort out the issue about the export. When I export using json format with the line looking like this:
$(“#grid”).jqxGrid(‘exportdata’, ‘json’, ‘test’);
it works.
When I try to export the same code but only change ‘json’ to ‘xls’ it wont work. I have found that in my code where I specify my datafields in my source that I need to specify type: ‘float’ for my hours. When I add the type the export to excel works, when I remove type it fails.
Thanks for the help!