yj-t
9/30/2014 - 11:10 PM

Custom Collections Timestamp Renderer

Custom Collections Timestamp Renderer

var timestampToDatetime = function(value, metaData, record, rowIndex, colIndex, store) {
    if (value == 0 || value == null) return '';

    return Ext.util.Format.date(new Date(parseInt(value) * 1000),MODx.config['collections.mgr_datetime_format']);
};