Overriding DFFS Close button behavior on DispForm

Forums Classic DFFS Overriding DFFS Close button behavior on DispForm

Viewing 2 reply threads
  • Author
    Posts
    • #8781
      DougMcCourt
      Participant

      Is it possible to override the behavior of the Close button on a DispForm?

      Current behavior: Close directs user to default listview for the list.
      Desired behavior: Close button does functional equivalent of the “Back” button

      background: Im using heavily calculated urls as the link for items in lists, when I clink on the link the DispForm opens, and via DFFS does all the behaviors I need. Im presenting a linked list of items (eg “Issues”) from the DispForm of the parent program. – if I click on the issue and go to its’ Dispform, on close I’d like to return to the dispform of the parent program – and not the default view of the Issues list.

      I cant extend my calculated url with Source= because the list of issues is presented from multiple places in a hierarchial structure (eg Initiative / Program / Workstream / SubStream) – each with its own dispform – so the calculated url in the Issue doesn’t know which parent invoked it.

      Thanks for any insight!

    • #8828
      Alexander Bautz
      Keymaster

      Try this in the custom js in DFFS:

      $("input[id$='diidIOGoBack']").attr("onclick","window.history.back()");

      Alexander

    • #8859
      DougMcCourt
      Participant

      That did it perfectly! Thanks so much.

Viewing 2 reply threads
  • You must be logged in to reply to this topic.