diff --git a/extension/Classes/Core/Renderer/FormElement/Bootstrap3/Bootstrap3SubrecordRenderer.php b/extension/Classes/Core/Renderer/FormElement/Bootstrap3/Bootstrap3SubrecordRenderer.php index 53bdd02abeea16951f2ebe39edf9ce77d5d387ac..1194347b0ae0c791c3dae1fe17419235ecf13d17 100644 --- a/extension/Classes/Core/Renderer/FormElement/Bootstrap3/Bootstrap3SubrecordRenderer.php +++ b/extension/Classes/Core/Renderer/FormElement/Bootstrap3/Bootstrap3SubrecordRenderer.php @@ -51,6 +51,7 @@ class Bootstrap3SubrecordRenderer extends \IMATHUZH\Qfq\Core\Renderer\FormElemen $caption = isset($fe->attributes[FE_LABEL]) ? '<caption class="qfq-subrecord-title">' . $fe->attributes[FE_LABEL] . '</caption>' : ''; $tbody = Support::wrapTag("<tbody $fe->dndHtmlAttributes>", $htmlBody); $table = Support::wrapTag("<table $htmlAttributes $tableAttributes>", $caption . $htmlHead . $tbody, true); + $table .= $this->renderFormEditorUrl($fe); return Support::wrapTag('<div id="' . $fe->attributes[FE_HTML_ID] . '" class="form-group clearfix">', $table); }