Export Form Submissions to CSV with JavaScript
Orchard 1.10 gives you the opportunity to export Contents and Form Submissions to XML with the built-in module Import Export. If you want to change this functionality, you have to create a module that will export to CSV. But there is a quicker way with my best friend JavaScript.
First, we will create an export button that will appear only in the Form Submissions Page:
var url = window.location.href.toString().toLowerCase(); if (url.indexOf('submissionadmin') > -1) { $('<a/>', { id: …
Read More