From 8ef6e9caf3b2e37956fd6772891aeec668094755 Mon Sep 17 00:00:00 2001 From: zzalap <zen.zalapksi@math.uzh.ch> Date: Tue, 7 Jan 2025 13:44:20 +0100 Subject: [PATCH] refs #20313, Added the edit icon for subrecord FE. --- .../FormElement/Bootstrap3/Bootstrap3SubrecordRenderer.php | 1 + 1 file changed, 1 insertion(+) diff --git a/extension/Classes/Core/Renderer/FormElement/Bootstrap3/Bootstrap3SubrecordRenderer.php b/extension/Classes/Core/Renderer/FormElement/Bootstrap3/Bootstrap3SubrecordRenderer.php index 53bdd02ab..1194347b0 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); } -- GitLab