process model in section layout in Navigation(collapsible)

Certified Associate Developer

When i add process model to navigation bar it works fine but then i collap the navigation bar it show blank on icon click 

how to add process model to section layout?

a!sectionLayout(
contents: { rule!TCT_Template_Dashboard() }
),

a!sectionLayout(
contents: {
}
),

  Discussion posts and replies are publicly visible

Parents
  • {
    a!sectionLayout(
    label: "PrimaryDetails",
    contents: {
    a!linkField(
    links: a!startProcessLink(
    label: "update form",
    processModel:cons!AV_START_PROCESS_LINK,
    
    
    
    bannerMessage: "used to update the existed person details"
    )
    )
    },
    isCollapsible: true,
    isInitiallyCollapsed: true
    )
    }

    we have to create a constant for the existed process model and by using the a! start process link. or a! start process function we can directly take an action for the new record from the interface. there is a small difference between the above functions that is a! start process link-Start the process Synchronously & a! start process function -  start the process asynchronously.

Reply
  • {
    a!sectionLayout(
    label: "PrimaryDetails",
    contents: {
    a!linkField(
    links: a!startProcessLink(
    label: "update form",
    processModel:cons!AV_START_PROCESS_LINK,
    
    
    
    bannerMessage: "used to update the existed person details"
    )
    )
    },
    isCollapsible: true,
    isInitiallyCollapsed: true
    )
    }

    we have to create a constant for the existed process model and by using the a! start process link. or a! start process function we can directly take an action for the new record from the interface. there is a small difference between the above functions that is a! start process link-Start the process Synchronously & a! start process function -  start the process asynchronously.

Children