Actions
Bug #23843
closedDate selector not working correctly in flexform with steps
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2010-10-26
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
4.4
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
The date selector doesn't work at all when adding a new item in the backend in a plugin that uses a flexform with steps. Only existing (already saved) dates can be edited using the date selector popup.
Example flexform:
<T3DataStructure>
<meta>
<langDisable>1</langDisable>
</meta>
<ROOT>
<TCEforms>
<sheetTitle>Example</sheetTitle>
</TCEforms>
<type>array</type>
<el>
<steps type="array">
<type>array</type>
<section>1</section>
<tx_templavoila type="array">
<title>Items</title>
</tx_templavoila>
<el type="array">
<items type="array">
<type>array</type>
<tx_templavoila type="array">
<title>Item</title>
<eType>input</eType>
</tx_templavoila>
<el type="array">
<title>
<TCEforms>
<label>Title</label>
<config>
<type>input</type>
<size>24</size>
<eval>trim,required</eval>
</config>
</TCEforms>
</title>
<date>
<TCEforms>
<label>Date</label>
<config>
<type>input</type>
<size>8</size>
<eval>date,required</eval>
<max>20</max>
<checkbox>1</checkbox>
</config>
</TCEforms>
</date>
</el>
</items>
</el>
</steps>
</el>
</ROOT>
</T3DataStructure>
(issue imported from #M16131)
Actions