SMART datagrid v.1 > Classes > GridExportOptions
If it is true, it will export by arranging the data columns contained in column group in a row.
Defaults to false.
$('#export').click(function () {
DataLudi.exportToExcel(grdMain, {
taregt: "local",
fileName: "dlgrid.xlsx",
indenting: false,
linear: true
});
});