From 7c4f397efc862e70e83083ff92fa730f70b3aa44 Mon Sep 17 00:00:00 2001 From: Randolf Rotta Date: Wed, 3 Jan 2018 02:12:18 +0100 Subject: [PATCH] add div and span fields around inline form to help the javascript autocompletion to find its column information --- action/inline.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/action/inline.php b/action/inline.php index e0fe4901..52d8b627 100644 --- a/action/inline.php +++ b/action/inline.php @@ -87,15 +87,19 @@ protected function inline_editor() { // output the editor $value = $this->schemadata->getDataColumn($this->column); $id = uniqid('struct__', false); + echo '
'; echo ''; + echo ''; echo $value->getValueEditor('entry', $id); + echo ''; $hint = $this->column->getType()->getTranslatedHint(); if($hint) { echo '

'; echo hsc($hint); echo '

'; } + echo '
'; // csrf protection formSecurityToken();