Actions
Feature #30014
closedEpic #62041: twbs Bootstrap backend, refactor EXT:t3skin and HTML5 output
Epic #62836: FormEngine PHP/HTML Improvements & Bootstrap
TCA tree add filter "check"
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Backend User Interface
Target version:
-
Start date:
2011-09-19
Due date:
% Done:
0%
Estimated time:
PHP Version:
5.3
Tags:
Complexity:
medium
Sprint Focus:
Description
Here is the ticket for #30013 which is about adding a filter by check in the TCA tree widget.
Files
Updated by Fabien Udriot about 13 years ago
- File feature_30014.diff feature_30014.diff added
Hint for reviewing
1. apply patch
2. set TCA in typo3conf/extTables.php (cf. bellow)
3. open a "page property" > tab "Resources" > field "General Record Storage Page"
4. play with the new button (cf. screenshot)
///////////////////////////// // TEMP CODE IN @typo3conf/extTables.php@ /////////////////////////// t3lib_div::loadTCA('pages'); $tempConfiguration = array( 'type' => 'select', 'foreign_table' => 'pages', 'size' => 10, 'maxitems' => 5, 'renderMode' => 'tree', 'treeConfig' => array( 'expandAll' => true, 'parentField' => 'pid', 'appearance' => array( 'showHeader' => TRUE, 'allowRecursiveMode' => TRUE, ), ), ); $TCA['pages']['columns']['storage_pid']['config'] = array_merge( $TCA['pages']['columns']['storage_pid']['config'], $tempConfiguration );
Updated by Fabien Udriot about 13 years ago
Updated by Oliver Hader about 13 years ago
- Category set to Backend User Interface
- PHP Version set to 5.3
- Complexity set to medium
Updated by Steffen Ritter almost 13 years ago
- Target version changed from 4.7.0 to 4.7.0-alpha1
Updated by Oliver Hader almost 13 years ago
- Target version changed from 4.7.0-alpha1 to 4.7.0-alpha2
Updated by Steffen Ritter almost 13 years ago
- Target version changed from 4.7.0-alpha2 to 4.7.0-alpha3
Updated by Felix Kopp almost 13 years ago
Shall I push the attached patch file as change to gerrit?
Updated by Steffen Ritter almost 13 years ago
- Target version changed from 4.7.0-alpha3 to 4.7.0-beta1
Updated by Steffen Ritter over 12 years ago
- Target version deleted (
4.7.0-beta1)
Updated by Mathias Schreiber almost 10 years ago
- Status changed from Accepted to Resolved
works like a charm on master
Actions