data['parameterArray']['fieldConf']['config']['dataStructureIdentifier']; $flexFormDataStructureArray = $this->data['parameterArray']['fieldConf']['config']['ds']; $options = $this->data; $options['flexFormDataStructureIdentifier'] = $flexFormDataStructureIdentifier; $options['flexFormDataStructureArray'] = $flexFormDataStructureArray; $options['flexFormRowData'] = $this->data['parameterArray']['itemFormElValue']; $options['renderType'] = 'flexFormNoTabsContainer'; // Enable tabs if there is more than one sheet if (count($flexFormDataStructureArray['sheets']) > 1) { $options['renderType'] = 'flexFormTabsContainer'; } $resultArray = $this->nodeFactory->create($options)->render(); $resultArray['html'] = '
' . $resultArray['html'] . '
'; $resultArray['html'] = $this->wrapWithFieldsetAndLegend($resultArray['html']); return $resultArray; } }