SMART datagrid v.1 > Classes > DataOutputOptions

[ grids ver.1.3.0]   Back  Forward

DataLudi.DataOutputOptions.hiddenFields  property

The fields which are not included in exporting. 

Specify one field or specify more than one as array. You can respectively specify as field index or field name. 

You can specify the fields which will be included in visibleFields, and when they are included in this property even if in visibleFields, they will not be included in exporting. 

Defaults to null.

Getter
function hiddenFields(): [String|Integer]
Setter
function setHiddenFields(value: [String|Integer])
Code -1
    ds.exportToJson({
        visibleFields: ['country', 'interest_rate', 'amount']
    });
See Also
visibleFields
GridDataSet.exportToJson
GridDataSet.exportToCsv
Examples
Grid Data Set Export