SMART datagrid v.1 > Classes > CalculatedColumn
If it is true, it will reuse after storing the value returned from valueExpression or valueCallback.
If need to recalculate, the grid will recalculate and store it. If it is false, it will recalculate whenever the value is requested.
Defaults to false.
grid.setColumns([{
name: "colAmount",
type: "calced",
valueExpression: "unit_price * quantity",
cahced: true
},
...
]);