Back button for records

After i click on a particular record in a list , i get this record summary page . So, i inserted back button to go back to the list . But when i click on the button , it goes back to the list but it contains the record summary header ( like seen below , with the record title and related action).

Can anyone suggest how to solve this !

I tired using the safe link as well , but it didnt work.

  Discussion posts and replies are publicly visible

Parents Reply
  • I have a landing page called home page . in the landing page i configured like

     a!cardLayout(
                          contents: a!richTextDisplayField(
                            labelPosition: "COLLAPSED",
                            value: a!richTextItem(
                              text: "BROWSE",
                              color: "ACCENT",
                              style: "STRONG"
                            ),
                            align: "CENTER"
                          ),
                          link: a!dynamicLink(
                            saveInto: {
                              a!save(local!selectedInterface,1)
                            },
                          ),
                          style: "NONE"
                        ),

    I gave this code so that when we click on the card it goes to the "Todays Schedule " List interface . In that interface the data is called from a record.

    And when i click on the any of one record from the list it open my record summary page. 

    From record summary page when i click back it goes to my "Today Schedule" List interface but , record title and its related actions can be seen n that page . 

    Below is the code i gave in my record summary interface for back button.

     a!buttonLayout(
          primaryButtons: 
          a!buttonWidget(
            label:"Go back",
            icon: "chevron-left",
            value:"Go Back",
            saveInto:a!save(
              local!selectedInterface,
              1
            ),
           
            style:"PRIMARY",
    
         )),
          if(
            rule!APN_isBlank(local!selectedInterface),
            {},
            choose(
              local!selectedInterface,
              rule!PO_appointmentList()
            )),

    The below is the code which i gave in my Record>>Views>>Summary: rule!PO_PatientInfoParent(patientInfo: rv!record)

Children
No Data