Attention
TYPO3 v11 has reached end-of-life as of October 31th 2024 and is no longer being maintained. Use the version switcher on the top left of this page to select documentation for a supported version of TYPO3.
Need more time before upgrading? You can purchase Extended Long Term Support (ELTS) for TYPO3 v10 here: TYPO3 ELTS.
hideSuggest
hideSuggest
-
- Type
- boolean
- Path
- $GLOBALS['TCA'][$table]['columns'][$field]['config']
- Scope
- Display
- InternalType
- db
The "suggest wizard" is added by default to all database relation group fields. After a couple of characters have been typed into this field, an ajax based search starts and shows a list of records matching the search word.
The syntax for the search is:
"multiple words" something
, so you can enclose words you want to find next to each other in double quotes.A set of options is available to configure search details.
Setting this property to
true
disables the suggest wizard.
Examples
Suggest wizard is shown

[
'columns' => [
'group_db_8' => [
'exclude' => 1,
'label' => 'group_db_8 allowed=tx_styleguide_staticdata, multiple',
'config' => [
'type' => 'group',
'hideSuggest' => false,
'allowed' => 'tx_styleguide_staticdata',
'multiple' => true,
],
],
],
]