jQuery Grid Export Options

Specifies the exporting options for the ShieldUI Grid.

...
toolbar: [
    {
        buttons: [
            {
                commandName: "excel",
                caption: 'Export to Excel'
            }
        ]
    }
],
exportOptions: {
    proxy: '/download',
    excel: {
        fileName: "suigrid.xlsx",
        author: "John Smith",
        columnFields: ["name", "email"],
        header: {
            enabled: true,
            style: {
                bold: true,
                italic: true
            }
        },
        worksheet: {
            name: "Sample Worksheet One"
        }
    },
    pdf: {
        fileName: "mypdffile.pdf",
        author: "John Smith"
    }
},
...