diff --git a/typo3/sysext/recycler/res/js/t3_recycler.js b/typo3/sysext/recycler/res/js/t3_recycler.js index cf7a82c..90df9ca 100644 --- a/typo3/sysext/recycler/res/js/t3_recycler.js +++ b/typo3/sysext/recycler/res/js/t3_recycler.js @@ -95,7 +95,8 @@ Recycler.TableStore = new Ext.data.Store({ {name: 'table', type: 'string'}, {name: 'records', type: 'int'}, {name: 'valueField', type: 'string'}, - {name: 'tableTitle', type: 'string'} + {name: 'tableTitle', type: 'string'}, + {name: 'tstamp', type: 'int'} ]), listeners: { 'load': { @@ -350,8 +351,9 @@ Recycler.GridContainer = Ext.extend(Ext.grid.GridPanel, { Recycler.Expander, {header: "UID", width: 10, sortable: true, dataIndex: 'uid'}, {header: "PID", width: 10, sortable: true, dataIndex: 'pid'}, - {id: 'record', header: TYPO3.lang.records, width: 60, sortable: true, dataIndex: 'record', renderer: Recycler.Utility.renderTopic}, - {id: 'table', header: TYPO3.lang.table, width: 20, sortable: true, dataIndex: 'tableTitle'} + {id: 'record', header: TYPO3.lang.records, width: 50, sortable: true, dataIndex: 'record', renderer: Recycler.Utility.renderTopic}, + {id: 'table', header: TYPO3.lang.table, width: 15, sortable: true, dataIndex: 'tableTitle'}, + {id: 'tstamp', header: TYPO3.lang.tstamp, width: 15, sortable: true, dataIndex: 'tstamp'} ]), viewConfig: { forceFit: true