Skip to content

Instantly share code, notes, and snippets.

@chuenniger
Last active December 23, 2015 19:29
Show Gist options
  • Save chuenniger/6682597 to your computer and use it in GitHub Desktop.
Save chuenniger/6682597 to your computer and use it in GitHub Desktop.
TYPO3 / TypoScript: Increase the amout of items in TYPO3 Backend List - web_list
# TYPO3 / TypoScript: Increase the amount of items in TYPO3 Backend List - web_list
mod {
web_list {
# table singleview limit
itemsLimitSingleTable = 200
# listview of tables limit
itemsLimitPerTable = 200
}
}
# Show TEXT, if the value is not empty
10 = TEXT
10.field = field_MYFIELD
10.wrap = <a class="scrolldown"> | </a>
10.if.isTrue.field = field_MYFIELD
# Backendsuche für die eigenen Extenbsions aktivieren (http://www.typo3-snippets.de/snippets/extension-programmierung/backend-suche-fuer-eigene-extension-aktivieren.html)
$GLOBALS['TCA']['tx_myext_item']['ctrl']['searchFields'] = 'title,subtitle,description';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment