Done
Details
Priority
HighestAssignee
Marc SladekMarc SladekReporter
Fabian PichlerFabian PichlerSprint
NoneStory Points
5Components
Fix versions
Details
Details
Priority
Assignee
Marc Sladek
Marc SladekReporter
Fabian Pichler
Fabian PichlerSprint
None
Story Points
5
Components
Fix versions
Clockify
Clockify
Clockify
Created 31 October 2017 at 17:08
Updated 21 December 2017 at 14:47
Resolved 21 December 2017 at 14:47
Method DefaultStructuredDataEditorService#getCellXObject always defaults to the first object if the given objNb doesn't exist. This prevents the creation of new objects with objNb = -1 via the ajax request saveWithValidation.
Optional<BaseObject> getCellXObject(XWikiDocument cellDoc, XWikiDocument onDoc) { Optional<BaseObject> ret = ...; return ret.or(Optional.fromNullable(modelAccess.getXObject(onDoc, classRef.get()))); }
Change the behaviour so that it only falls back to the first object if no objNb is provided. Also rename to 'geXObjectInStructEditor'.