Combine Form Layout with Header Content Layout

So, I need to use formLayout as top level, because it's a requirement to run Process Model, but, i have a Header Content Layout (where I can't reproduce using another layout), and when I try to use this as formLayout child, there a error message that is not possible, because is not compatible. What can I do?

  Discussion posts and replies are publicly visible

Parents Reply
  • Hello, thank you for your answer.

    So, I have modified my header just to show you as an example, but, basically the structure of my header as bellow. I couldn't reproduce using another structure.

    a!headerContentLayout(
      header: {
        a!cardLayout(
          contents: {
            a!cardLayout(
              contents:{
                a!columnLayout(contents:{
                  a!richTextDisplayField(
                    value:{
                  a!richTextItem(text: "test", size: "SMALL")})
                })
              }
            )
          },
          height: "AUTO",
          style: "ACCENT",
          marginBelow: "NONE",
          showBorder: false
        )
      },
     )

Children