SMART datagrid v.1 > Classes > GridExportOptions

Back  Forward

DataLudi.GridExportOptions.lookupDisplay  property

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.

Getter
function lookupDisplay(): Boolean
Setter
function setLookupDisplay(value: Boolean)
Code -1
    $('#export').click(function () {
        DataLudi.exportToExcel(grdMain, {
            taregt:  "local",
            fileName: "dlgrid.xlsx",
            lookupDisplay: true
        });
    });
See Also
booleanCallback
datetimeCallback
numberCallback
GridExcelExporter
exportToExcel
Examples
Excel Exporting