Refer to a field in tab headings?

Forums Classic DFFS Refer to a field in tab headings?

Viewing 5 reply threads
  • Author
    Posts
    • #6884
      Bloodlvst
      Participant

      Hi Alex,

      Great work with this solution! It’s been saving me a ton of trouble and I definitely am going to purchase a license in February! 🙂

      I’m curious if there’s any way to display a field value for the current item in the tab headers? (This would obviously only be for EditForm and DispForm). We are using DFFS to create a ticket/tracking system to replace our old one, and we’re trying to make it a clone of the old one. I’ve gotten pretty much everything setup with CSS and side-by-side, but this would be the icing on the cake if the ticket number can go into one of our tab headers!

      I’ve included a screenshot of the header.

      Thanks!
      Kyle

      Attachments:
    • #6889
      Alexander Bautz
      Keymaster

      Hi,
      This is no problem. Add this code to the header (see image attached):

      PM Number: <span id="putPMNumberHere" />

      Then use this code in the custom JS section in the Misc tab:

      // For DispForm
      $("#putPMNumberHere").html(getFieldValue("YourFieldName",true));
      // For EditForm
      $("#putPMNumberHere").html(getFieldValue("YourFieldName",false));

      PS: “YourFieldName” is the FieldInternalName – change it for your actual field name.

      Hope this helps
      Alexander

      • This reply was modified 9 years, 2 months ago by Alexander Bautz. Reason: Fixed error in code example
    • #6891
      Bloodlvst
      Participant

      Hey Alex,

      I’ve tried this, but to no avail. I’m still just getting the same “PM Number:” with nothing there. I’ve attached screenshots of my DispForm config.

      Note that I’ve also tried “PM Number” as well instead of the “Title” internal field name, still no luck.

      Thanks!
      Kyle

    • #6895
      Alexander Bautz
      Keymaster

      Sorry, my bad – there was an error in the code example. See if this helps.

      Alexander

    • #6896
      Bloodlvst
      Participant

      Ah, good old brackets.

      Working like a charm now! Thanks so much! 😀

    • #6898
      Bloodlvst
      Participant

      For anyone who comes across Alex’s solution to this:

      I had this header for every tab on my page (essentially, the form showed the PM number on every single tab in the same spot). You may run into trouble with it only showing on the first tab. You can fix this by modifying the code to the following:

      PM Number: <span class="putPMNumberHere" />
      
      
      // For DispForm
      $(".putPMNumberHere").html(getFieldValue("YourFieldName",true));
      // For EditForm
      $(".putPMNumberHere").html(getFieldValue("YourFieldName",false));

      Just use classes instead of ID’s 🙂

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