Bug #36452
closedSearch String feature in List view not working
0%
Description
The Search String feature in the List view is only working for page related items. Items from own extensions, or e.g. TemplaVoila are not found. That feature was working as far as I recall in previous versions (but its broken a few major releases now). Tested for example with 4.6 stable and 4.7 RC
Updated by Markus Klein over 12 years ago
Hi Klaus,
it's not a bug, it's a feature.
See http://wiki.typo3.org/TYPO3_4.6.0#Live_Search
TCA of extensions has to be updated accordingly.
Updated by Klaus Hinum over 12 years ago
Hi Markus,
thanks, you are right, somehow missed that change in 4.6.
added
'searchFields' => 'field1,field2,field3' to the ext_tables.php TCA 'ctrl' section, now it works.
E.g. for all that stumble across that
$TCA["tablename"] = array (
"ctrl" => array (
'searchFields' => 'field1,field2,field3',
)
);