Feature #26287 ยป workspace_module_limit.patch
typo3/sysext/workspaces/Resources/Public/JavaScript/component.js 2011-09-13 12:20:15.008325743 +0200 | ||
---|---|---|
id: TYPO3.settings.Workspaces.id,
|
||
query: '',
|
||
start: 0,
|
||
limit: 10
|
||
limit: 30
|
||
},
|
||
showAction : false,
|
||
-- typo3/sysext/workspaces/Classes/Service/GridData.php 2011-09-01 11:51:21.161622572 +0200
|
||
++ typo3/sysext/workspaces/Classes/Service/GridData.php 2011-09-13 12:20:15.008325743 +0200
|
||
... | ... | |
$filterTxt = isset($parameter->filterTxt) ? $parameter->filterTxt : '';
|
||
$start = isset($parameter->start) ? intval($parameter->start) : 0;
|
||
$limit = isset($parameter->limit) ? intval($parameter->limit) : 10;
|
||
$limit = isset($parameter->limit) ? intval($parameter->limit) : 30;
|
||
$this->sort = isset($parameter->sort) ? $parameter->sort : 't3ver_oid';
|
||
$this->sortDir = isset($parameter->dir) ? $parameter->dir : 'ASC';
|
||
if (is_int($currentWorkspace)) {
|
||
-- typo3/sysext/workspaces/Resources/Public/JavaScript/toolbar.js 2011-09-01 11:51:21.161622572 +0200
|
||
++ typo3/sysext/workspaces/Resources/Public/JavaScript/toolbar.js 2011-09-13 12:20:15.008325743 +0200
|
||
... | ... | |
TYPO3.Workspaces.Toolbar.Pager = new Ext.PagingToolbar({
|
||
store : TYPO3.Workspaces.MainStore,
|
||
pageSize : 10,
|
||
pageSize : 30,
|
||
displayInfo: false,
|
||
plugins : [ TYPO3.Workspaces.Configuration.GridFilters ]
|
||
});
|