Bug #67165
closedwizard_table not working with FlexForm
0%
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>
Updated by Christian Kuhn over 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.
Updated by Christian Kuhn over 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>
Updated by Jeff C over 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.