SMART datagrid v.1 > Classes > ValueColumn
Callback function which returns the text to be displayed in cell included in this column.
If set this property, the export formats specified in Column Style will be ignored.
Defaults to null.
column.setDisplayCallback(function (index, value) {
return value.substr(0, 3) + '-' + value.substr(3);
});