Nagivation (Lightweight) pattern control

Hi,

I am using a Navigation (Lightweight) pattern.

When the user clicks on the left menu for example 2nd menu item, I am able to load the respective page. But, when I try to save the data on the 2nd menu item page, after saving it is loading the first menu item page. It is not staying in the same page.

Any advises here please.

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Senior Developer
    in reply to swapnar6405

    I'm not entirely sure what's going on in ur interface with the limited info,
    but if ur using the lightweight navigation pattern, try using a dummy refresh local, and make it so that the selected navigation system wont change unless this refresh is changed or if u directly saved to it.
    I think the problem lies elsewhere tho, but this might fix ur problem.

      a!localVariables(
        local!refresh: 1,
        /* The selected navigation section */
        local!activeLightweightNavSection: a!refreshVariable(
          value: 1,
          refreshOnVarChange: local!refresh,
          refreshOnReferencedVarChange: false()
        ),

Children