How to transfer the localvalue of one interface to another interface?

as title

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Lead Developer
    in reply to immortalvirgil

    You will likely need to map the rule inputs together from the child interface to the parent. For example, suppose you have a rule input for ri!case on the child interface. You will need to create a second rule input to match that on the parent interface and map them together like this:

    rule!ChildInterface(case: ri!case)

    Then, any changes you make in the child interface will also be saved to the parent.

Children