There seems to be a (related TYPO3 Core, a workaround is mentioned there as well) issue with the enabledControls "hide" on repetitions, if the hidden checkbox for the repetition table is configured with invertStateDisplay set to true.
Very simple mask element, just a repetition, with a single random field. No changes to any of the defaults. "hide" is set to true:
When using in backend and having the repetition opened up, using the top right hide toggle (1), switches the hidden input field (3) to he wrong value. The normal checkbox on the left (2) works as expected. Like said, only happens if invertStateDisplay is set to true for the hidden field of hat table.
This is obviously a TYPO3 bug, (as linked above), but it can probably be avoided in Mask by not using invertStateDisplay. Or at least not using it when "hide" enabledControls is set. Maybe doing it like sys_file_reference, by using a hidden palette with the hidden field could work, if the enabledControl is used.
There seems to be a (related TYPO3 Core, a workaround is mentioned there as well) issue with the
enabledControls
"hide" on repetitions, if the hidden checkbox for the repetition table is configured withinvertStateDisplay
set to true.Very simple mask element, just a repetition, with a single random field. No changes to any of the defaults. "hide" is set to true:
When using in backend and having the repetition opened up, using the top right hide toggle (1), switches the hidden input field (3) to he wrong value. The normal checkbox on the left (2) works as expected. Like said, only happens if
invertStateDisplay
is set to true for thehidden
field of hat table.This is obviously a TYPO3 bug, (as linked above), but it can probably be avoided in Mask by not using
invertStateDisplay
. Or at least not using it when "hide"enabledControls
is set. Maybe doing it likesys_file_reference
, by using a hidden palette with thehidden
field could work, if theenabledControl
is used.At least until they fix the issue.
Greetings