Hi, I'd like to implement an Excel export for the data in my grid that uses a remote data model including remote paging and filtering.
I don't want to have to pull all the data to the browser first and then render the Excel on the client side.
I've got a backend that will handle this for me, but I need to come up with the best method of getting the URL that pqGrid will use given the current filter and sorting state (minus the paging, since the Excel export will export *all* content, not just the current page) to pass to this Excel-generating backend.
I've tried to look for events etc. that might help with this and am coming up empty. I of course case see in the console what URLs pqGrid uses when making the remote data calls, but is there some built in simple way for me to intercept that or predict what URL will be used?
Thanks