SMART datagrid v.1 > Classes > SeriesColumn

Back  Forward

DataLudi.SeriesColumn.cached  property

If it is true, it will get and store the value of fields which have been specified by fieldNames before using. 

If it is false, it will get the values of specified fields again whenever necessary. 

Defaults to false.

Getter
function cached(): Boolean
Setter
function setCached(value: Boolean)
Code -1
    grid.setColumns([{
        name: 'col1',
        type: 'series',
        fieldNames: 'field1,field5..field11,field20',
        cached: true
    },
    ...
    ]);
See Also
fieldNames
DataField
DataSet
DataColumn
Examples
Series Column