Bug #60726
closed__identity field will not be rendered if of type @lazy
100%
Description
Hello Core-Team,
I have a field like that one in my fluid-template:
<f:form.textfield class="powermail_input" placeholder="ss:mm" id="timeBegin" property="eventTime.timeBegin" />
To prevend it from validation I have added the @lazy annotation in domain model. In renderHiddenIdentityField method you have something like:
if (!is_object($object) || !($object instanceof \TYPO3\CMS\Extbase\DomainObject\AbstractDomainObject) || ($object->_isNew() && !$object->_isClone())) { return ''; }
But \TYPO3\CMS\Extbase\Persistence\Generic\LazyLoadingProxy isn't any type of them, so my required __identity field will not be rendered in template.
Stefan
Updated by Gerrit Code Review over 10 years ago
- Status changed from New to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/31934
Updated by Gerrit Code Review over 10 years ago
Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/31934
Updated by Gerrit Code Review over 10 years ago
Patch set 3 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/31934
Updated by Gerrit Code Review over 10 years ago
Patch set 4 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/31934
Updated by Christian Kuhn over 10 years ago
To prevend it from validation I have added the @lazy annotation in domain model.
Is this sentence correct? If so, @lazy is definately not meant to be used to circumvent validation.
Updated by Stefan Froemken over 10 years ago
I know it is for loading domain models when needed. But in case of MM-Tables a @lazy annotation is the best solution to stop validation over nearly ALL mm-records (tested duration: 17 seconds).
Updated by Gerrit Code Review about 10 years ago
Patch set 1 for branch TYPO3_6-2 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/32895
Updated by Stefan Froemken about 10 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 66d5ac3ad72e92b4158f9d09cf9ae8e0ca6b03c7.