Bug #84208
closedTCA: using addRecord in a selectMultipleSideBySide select field overwrites existing data
0%
Description
Let's assume a TCA has a configuration like this:
'config' => [
'type' => 'select',
'renderType' => 'selectMultipleSideBySide',
[..],
'fieldControl' => [
'addRecord' => [
'disabled' => true,
'options' => [
'pid' => '9', //hardcoded!
[...]
On clicking the "addRecord" button, a new record can be created, which will be saved on a page with uid 9. Saving and closing leads back to the original form and fills the select list with the new record - REMOVING any other that might have already existed.
The expected behaviour would be to add the new record to the existing record.
(I would have liked to assign this issue to TCA, but the category list does not offer such a category. Therefore I assign it to FormFramework - unsure if this is the right place.)
PS: there are no examples in the documentation on how to create entries for markers that can be used with addRecord.
PPS: It is mentioned that markers can be defined in PageTS (again: example missing), but wouldn't it be better to fetch a marker from the setup.ts? Defining folder ids, where records may/must be created, in 2 possible places (setup.ts and pagets) seems double the trouble...
Updated by Ralf Zimmermann over 6 years ago
- Category changed from Form Framework to FormEngine aka TCEforms
Updated by Benni Mack over 5 years ago
- Target version changed from next-patchlevel to Candidate for patchlevel
Updated by Gone With the Wind over 5 years ago
- Related to Bug #82461: Backend/TCA: fieldControl->addRecord removes old relations after creating an new entry in the foreign table for the new relation added
Updated by Gone With the Wind over 5 years ago
I think this was resolved by #82461. A test today showed, that existing records are NOT deleted anymore.
IMO, this ticket can be closed.
Updated by Gone With the Wind over 5 years ago
The current issue is still valid as the configuration of a ###PAGE_TSCONFIG_PID### or any other in the "addRecord" section does not do anything. Meaning: If a new record is edited by clicking on the relevant button in the multiSelectSideBySide box, the new record is saved on the SAME page instead of on the page with the pid ###PAGE_TSCONFIG_PID###.
Updated by Gone With the Wind over 5 years ago
- Related to Bug #88472: Table with mm relation, unable to use ###CURRENT_PID### on relation if parent is unsaved added
Updated by Gone With the Wind over 5 years ago
- Related to Bug #88472: Table with mm relation, unable to use ###CURRENT_PID### on relation if parent is unsaved added
Updated by Gone With the Wind over 5 years ago
- Related to deleted (Bug #88472: Table with mm relation, unable to use ###CURRENT_PID### on relation if parent is unsaved)
Updated by Gone With the Wind over 5 years ago
- Related to Bug #84232: How to use ###PAGE_TSCONFIG_UID### with the fieldControls's "addRecord" in TCA? added
Updated by Benni Mack over 5 years ago
- Status changed from New to Closed
Issue closed on behalf of the Robert Wildling and Daniel Siepmann. Documentation will be updated accordingly.