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
There was already a feature request for it in #23, but deleting the entries directly from the database makes this an admin only task.
The possibility to delete ansers/log entries should be provided the backend module, right now only single entries can be deleted through the detail view.
After looking at the TCA of the table: should this really be soft-deletable? Logging for EXT:form was not added to the core due to concerns about data privacy, thus there needs to be an option to remove the records without a restore option.
The text was updated successfully, but these errors were encountered:
A very good and welcome feature, but sadly it is a little bit buggy, nor?
TYPO3 10.4.28
frp_form_answers 3.1.1
Clicking "delete entries" next to "export" ends up in an error:
Call to a member function getDocHeaderComponent() on null
in /var/www/html/public/typo3conf/ext/frp_form_answers/Classes/Controller/FormEntryController.php line 131
parent::initializeView($view);
$this->iconFactory = GeneralUtility::makeInstance(IconFactory::class);
if ($this->actionMethodName != 'exportAction') {
$view->getModuleTemplate()->getDocHeaderComponent()->setMetaInformation([]);
$pageRenderer = $this->view->getModuleTemplate()->getPageRenderer();
$pageRenderer->addInlineLanguageLabelFile('EXT:lang/Resources/Private/Language/locallang_core.xlf');
Using the delete button in the entry's row, will do – nothing. An error in the browser's console is thrown:
Uncaught TypeError: Cannot read properties of undefined (reading 'button.cancel')
at HTMLAnchorElement.<anonymous> (AjaxDataHandler.js?bust=1652437827:13:1605)
at HTMLDocument.dispatch (jquery.js?bust=1652437827:5246:27)
at HTMLDocument.elemData.handle (jquery.js?bust=1652437827:5053:28)
There was already a feature request for it in #23, but deleting the entries directly from the database makes this an admin only task.
The possibility to delete ansers/log entries should be provided the backend module, right now only single entries can be deleted through the detail view.
After looking at the TCA of the table: should this really be soft-deletable? Logging for EXT:form was not added to the core due to concerns about data privacy, thus there needs to be an option to remove the records without a restore option.
The text was updated successfully, but these errors were encountered: