Actions
Bug #54494
closednonSelectableLevels must be defined manually
Start date:
2013-12-18
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
6.2
PHP Version:
5.4
Tags:
Complexity:
easy
Is Regression:
No
Sprint Focus:
Description
Hello Core-Team,
in treeConfig of selectfields in FlexForms you have to add nonSelectableLevels to 0 manually. In non-FlexForm-Context nonSelectableLevels was set to 0 by default.
I think both versions should work the same way.
Stefan
Updated by Mathias Schreiber almost 10 years ago
- Target version changed from 6.2.0 to 7.4 (Backend)
Updated by Susanne Moog over 9 years ago
- Target version changed from 7.4 (Backend) to 7.5
Updated by Benni Mack about 9 years ago
- Target version changed from 7.5 to 7 LTS
Updated by Stefan Froemken about 9 years ago
- Status changed from New to Closed
I think we can close this issue. I have found following lines
if (isset($treeConfiguration['appearance']['nonSelectableLevels'])) { $dataProvider->setNonSelectableLevelList($treeConfiguration['appearance']['nonSelectableLevels']); } elseif (isset($treeConfiguration['rootUid'])) { $dataProvider->setNonSelectableLevelList(''); }
I'm pretty sure I have set rootUid, which will explain, why nonSelectableLevels was set to "".
Stefan
Actions