Project

General

Profile

Actions

Bug #72639

closed

Core-bug: Page link wizard does not save selected page uid

Added by Roman Crescente over 8 years ago. Updated over 7 years ago.

Status:
Closed
Priority:
Must have
Assignee:
Category:
Backend API
Start date:
2016-01-11
Due date:
% Done:

0%

Estimated time:
TYPO3 Version:
7
PHP Version:
Tags:
Complexity:
Is Regression:
No
Sprint Focus:

Description

(From: https://forge.typo3.org/issues/70602)
Still open in 7.6.2
The pid dont changes when there is a "page" selected for example:

1. open an element
2. select page with id 1, save.
3. reopen (now we have pid 1)select page with id 2
4. click "save" and when you click on save it jumps back to "id" 1 instead 2..

(in the html the hidden field has the old value)
when I change the Linhandler-TYPE to for example "file:2" then it works. just on the same type it dont changes

changes
page to page
file to file
...
don't works.


Related issues 2 (0 open2 closed)

Related to TYPO3 Core - Bug #70602: Page link wizard does not save selected page uidClosed2015-10-12

Actions
Related to TYPO3 Core - Bug #76410: Link wizard does not fill hidden field of Flexform input fieldClosed2016-05-31

Actions
Actions #1

Updated by Alexander Opitz over 8 years ago

  • Category set to Backend API
  • Target version set to Candidate for patchlevel

Please, if you create a new issue, do not add watchers wildly. This will only help you to get rejected.

Actions #2

Updated by Andre Koller about 8 years ago

Same here.

my TCA:

'link' => array(
            'label' => 'LLL:EXT:cms/locallang_ttc.xlf:header_link',
            'exclude' => 1,
            'config' => array(
                'type' => 'input',
                'size' => '50',
                'max' => '256',
                'eval' => 'trim',
                'wizards' => array(
                    'link' => array(
                        'type' => 'popup',
                        'title' => 'LLL:EXT:cms/locallang_ttc.xlf:header_link_formlabel',
                        'icon' => 'link_popup.gif',
                        'module' => array(
                            'name' => 'wizard_element_browser',
                            'urlParameters' => array(
                                'mode' => 'wizard'
                            )
                        ),
                        'JSopenParams' => 'height=800,width=600,status=0,menubar=0,scrollbars=1'
                    )
                ),
                'softref' => 'typolink'
            )
        ),
Actions #3

Updated by Andre Koller about 8 years ago

Works with wizard_link instead of wizard_element_browser

'link' => array(
            'label' => 'LLL:EXT:cms/locallang_ttc.xlf:header_link',
            'exclude' => 0,
            'config' => array(
                'type' => 'input',
                'size' => '50',
                'max' => '256',
                'eval' => 'trim,required',
                'wizards' => array(
                    '_PADDING' => 2,
                    'link' => array(
                        'type' => 'popup',
                        'title' => 'Link',
                        'icon' => 'EXT:backend/Resources/Public/Images/FormFieldWizard/wizard_link.gif',
                        'module' => array(
                            'name' => 'wizard_link',
                        ),
                        'JSopenParams' => 'height=800,width=600,status=0,menubar=0,scrollbars=1'
                    )
                ),
                'softref' => 'typolink'
            )
        ),
Actions #4

Updated by Jo Hasenau about 8 years ago

  • Status changed from New to Needs Feedback
  • Assignee set to Jo Hasenau

Does this mean that the bug is fixed, or is it necessary to fix wizard_element_browser?
So is the actual "bug" that you have to use a nother wizard for that purpose, or is that particular wizard really broken?

Actions #5

Updated by Andreas Wolf about 8 years ago

  • Status changed from Needs Feedback to Closed

This is intended behaviour:

Reference to "wizard_element_browser" was migrated to new "wizard_link" for field "header_link" in TCA table "tt_content"

Actions #6

Updated by Jo Hasenau about 8 years ago

Well - the old wizard was broken and is now replaced automagically with the other wizard. So actually it was not intended, but we won't fix it anymore.

Actions #7

Updated by Andreas Moeller over 7 years ago

My problem was the extension "compatibility6". I disabled it, and it worked again.

Actions #8

Updated by Mona Muzaffar almost 7 years ago

  • Related to Bug #76410: Link wizard does not fill hidden field of Flexform input field added
Actions

Also available in: Atom PDF