-
Type: Bug
-
Status: Resolved
-
Priority: Critical
-
Resolution: Fixed
-
Affects Version/s: 10.10-HF22, 11.1
-
Fix Version/s: 10.10-HF23, 11.1, 2021.0
-
Component/s: Core
-
Tags:
-
Team:GANG
-
Sprint:nxGang Sprint 11.1.28, nxGang Sprint 11.1.29
-
Story Points:3
If we create a placeless document (documentation) like below:
DocumentModel parent = session.createDocumentModel(null, "anyFile", "File"); parent = session.createDocument(parent);
parent.getParentRef()
will be equals to
null
which is the expected behaviour.
but if we create another file under it:
DocumentModel child = session.createDocumentModel(parent.getPathAsString(), "anyFile2", "File"); child = session.createDocument(child);
child.getParentRef()
will be equals to
null
which is not the expected behaviour.
child.getParentRef()
should be the its parent id (the id of anyFile document in our example).
- is required by
-
NXP-28731 Create comments on a placeless document must be effective
- Resolved
- Is referenced in