You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On TYPO3 with the current operations version, the search in list mode did only work once. After that the selection could not be changed because of the TYPO3 cache.
In the file ext_localconf.php the Plugin is configured like this:
To make search non cached you also need to add it to the first list.
It's a bit of a curious thing in TYPO3 extension but to make a controller action not cached you need to add it to the cached and non cached list.
This works for me:
Hello,
On TYPO3 with the current operations version, the search in list mode did only work once. After that the selection could not be changed because of the TYPO3 cache.
In the file ext_localconf.php the Plugin is configured like this:
ExtensionUtility::configurePlugin(
'Operations',
'OperationList',
[
OperationController::class => 'list',
],
[
OperationController::class => 'search',
],
ExtensionUtility::PLUGIN_TYPE_CONTENT_ELEMENT
);
To make search non cached you also need to add it to the first list.
It's a bit of a curious thing in TYPO3 extension but to make a controller action not cached you need to add it to the cached and non cached list.
This works for me:
ExtensionUtility::configurePlugin(
'Operations',
'OperationList',
[
OperationController::class => 'list,search',
],
[
OperationController::class => 'search',
],
ExtensionUtility::PLUGIN_TYPE_CONTENT_ELEMENT
);
Kind regards
Florian
The text was updated successfully, but these errors were encountered: