Project

General

Profile

Actions

Bug #67165

closed

wizard_table not working with FlexForm

Added by Jeff C almost 9 years ago. Updated almost 9 years ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Form Framework
Target version:
-
Start date:
2015-05-27
Due date:
% Done:

0%

Estimated time:
TYPO3 Version:
7
PHP Version:
Tags:
Complexity:
Is Regression:
No
Sprint Focus:

Description

wizard_table will not save the data and display the flexform-structure when used in a flexform. I've used the following code:

<config>
<type>text</type>
<cols>30</cols>
<rows>5</rows>
<wizards>
<table type="array">
<notNewRecords>1</notNewRecords>
<type>script</type>
<title>Table wizard</title>
<icon>wizard_table.gif</icon>
<params>
<xmlOutput>0</xmlOutput>
</params>
<module>
<name>wizard_table</name>
</module>
</table>
</wizards>
</config>


Related issues 1 (0 open1 closed)

Related to TYPO3 Core - Bug #68107: wizard_table not working with FlexFormClosedFrank Nägler2015-05-27

Actions
Actions #1

Updated by Christian Kuhn almost 9 years ago

imho not a bug, this config does not use the new csrf protected registration that was introduced in 6.2. this old config was kicked in 7. i can paste in the correct (not deprecated) config tomorrow, if that helps.

Actions #2

Updated by Christian Kuhn almost 9 years ago

here is an adapted example:

<TCEforms>
<label>WIZARD 6: eval=trim, link wizard</label>
<config>
    <type>input</type>
    <eval>trim</eval>
    <softref>typolink</softref>
    <wizards type="array">
        <link type="array">
            <type>popup</type>
            <title>Link</title>
            <icon>link_popup.gif</icon>
            <module type="array">
                <name>wizard_element_browser</name>
                <urlParameters type="array">
                    <mode>wizard</mode>
                    <act>file|url</act>
                </urlParameters>
            </module>
            <params type="array">
                <blindLinkOptions>mail,folder,spec</blindLinkOptions>
            </params>
            <JSopenParams>height=300,width=500,status=0,menubar=0,scrollbars=1</JSopenParams>
        </link>
    </wizards>
</config>
</TCEforms>
Actions #3

Updated by Christian Kuhn almost 9 years ago

  • Status changed from New to Closed

closed: not a bug.

Actions #4

Updated by Jeff C almost 9 years ago

Thanks Christian, but you posted the configuration for a link-wizard. I need the table-wizard to work. Have you tried your config with the table-wizard? If it would be working, I wouldn't have called it a bug.

Actions

Also available in: Atom PDF