HOW TO COMBINE TWO VISUALS INTO A SINGLE INTERFACE

Hello,

I have created a created both the grid and pie chart, how to call these interfaces inside a single interface for display purposes? This is also a part of instructions though its not cleared explained in it.

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Lead Developer
    Hi you need to go for sectionLayout and call these both the section layout inside an another interface under formLayout

    Example:

    1. Your grid interface will contain sectionLayout / columnLayout / load() with gridField but not formLayout
    2. Your pie chart interface should also contain sectionLayout / columnLayout etc.. but not formLayout

    3. In your main form, under contents of formLayout use
    {
    rule!gridInterface(),
    rule!pieChartInterface()
    }

    Alternatively also you can directly define this as

    {
    rule!gridInterface(),
    rule!pieChartInterface()
    }

    Instead of using formLayout in case if you just want it for view purpose but not a form to be actioned by the end user.

    Hope this helps.
Reply
  • 0
    Certified Lead Developer
    Hi you need to go for sectionLayout and call these both the section layout inside an another interface under formLayout

    Example:

    1. Your grid interface will contain sectionLayout / columnLayout / load() with gridField but not formLayout
    2. Your pie chart interface should also contain sectionLayout / columnLayout etc.. but not formLayout

    3. In your main form, under contents of formLayout use
    {
    rule!gridInterface(),
    rule!pieChartInterface()
    }

    Alternatively also you can directly define this as

    {
    rule!gridInterface(),
    rule!pieChartInterface()
    }

    Instead of using formLayout in case if you just want it for view purpose but not a form to be actioned by the end user.

    Hope this helps.
Children
No Data