[TYPO3] mod.list_web configure number of shown records

Fabien Udriot fudriot at omic.ch
Mon Jun 9 13:09:24 CEST 2008


Great tips! It works fine.

In my case :

t3lib_div::loadTCA('tt_address');
$TCA['tt_address']['interface']['maxDBListItems'] = '50';
$TCA['tt_address']['interface']['maxSingleDBListItems'] = '1000';

Thanks !

Fabien

Susanne Moog a écrit :
> Hello Fabien,
> 
> Fabien Udriot wrote:
>> How is it possible to displayed / configured the number of visible 
>> records in the module "Web" > "List" . The default value is 20 
>> elements. And 100, if one browse the elements. In fact, I would like 
>> to see all element at once or at least increase the minimum number of 
>> shown elements.
> 
> I don't think you can change this with tsconfig. It seems to be defined 
> in TCA, so you could alter it with your own extension, something like:
> 
> (in ext_tables.php)
> t3lib_div::loadTCA('tt_content');
> $TCA['tt_content']['interface']['maxDBListItems'] = '30';
> $TCA['tt_content']['interface']['maxSingleDBListItems = '300';
> 
> HTH,
> 
> Susanne


More information about the TYPO3-english mailing list