SMART datagrid v.1 > Classes > GridExportOptions
If this property is true, when labelField of column of data cell has been set and lookupDisplay of column is true, it will search and display the value of matching lookup setting of column instead of the value of data cell.
Defaults to false.
$('#export').click(function () {
DataLudi.exportToExcel(grdMain, {
taregt: "local",
fileName: "dlgrid.xlsx",
lookupDisplay: true
});
});