Difficult Editor Layout

Hello!

I would like to create an editor for a concept with child concept which produces an output which looks like this:
First Part of Parent Concept(Child        PropA PropB,
              AnotherChild PropA PropB,
              LastChild    PropA PropB) Second Part of Parent Concept 

I've already tried different combinations of layouts but was unable to achieve the desired output. Right now I live with this solution:
First Part of Parent Concept(
    Child        PropA PropB,
    AnotherChild PropA PropB,
    LastChild    PropA PropB
) Second Part of Parent Concept 

The Second Part of Parent Concept should be aligned with the last line of the child collection (which is a vertical grid). Is this possible?
0
3 comments
Avatar
Permanently deleted user
Hi Christian,

In the upcoming 2.5.2 we introduced a pair of new collection styles: indent-layout-indent-anchor and indent-layout-wrap-anchor.

indent-anchor :
.......(child1,
        child2, ......,            ## indent-anchor: indentation is aligned with the start of the collection
 wrappedChildN) ......  ## default continuation indent: 2 tabs

indent-anchor + wrap-anchor:
.......(child1,
        child2, ......,
        wrappedChildN) ......   ## wrap-anchor: no extra tabs after wrapping

indent + indent-anchor:
.......(child1,
            child2, ......,      ## 1 tab indent
     wrappedChildN) ......   ## 2 tab wrapping

wrap-anchor:
.......(child1,
child2,
        wrappedChildN) ......   ## 2 tab wrapping
0
Avatar
Permanently deleted user
Great! Can't wait.
0

Please sign in to leave a comment.