Actions
Bug #33741
closedPopup wizard on a field just submits the first 200 chars to popup
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2012-02-07
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.6
PHP Version:
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
I am using a textarea field and want to create a wizard. This is my code in TCA:
'wizards' => Array( '_PADDING' => 4, 0 => Array( 'title' => 'LLL:EXT:cms/locallang_tca.xml:backend_layout.wizard', 'type' => 'popup', 'icon' => t3lib_extMgm::extRelPath('cms').'layout/wizard_backend_layout.png', 'script' => t3lib_extMgm::extRelPath('dce').'Classes/Wizard/DceField.php', 'JSopenParams' => 'height=800,width=800,status=0,menubar=0,scrollbars=0', ), ),
The value of the field will be submitted with the get parameter $_GET['P']['currentValue']
, but apparently just the first 200 chars. This round lot looks like that it has been intended to cut off the value after 200 chars, but
- is it still necessary? IE6 is not longer supported
- maybe it is a bug
- in any case: it is not documented anywhere! It should.
Thanks!
~Armin
Actions