Submit Your Suggestions For Field View

List of Forms: ability to open forms in new tabs (add URLs to links)

Extremely useful when you need to open several forms at once. Will save lots of time and effort. See screenshot for exact implementation details.

  • Dmitrij Maksimov
  • Nov 9 2022
Company STS
I need it... Yesterday...Come on already
  • Attach files
  • Dmitrij Maksimov commented
    November 14, 2022 12:00

    Version 0.2 of the script (v0.1 broke LeftClick functionality - list filters were reset when returning to the list)


    // ==UserScript==
    // @name FieldView URLs in lists fix
    // @namespace http://stsgroup.ie/
    // @version 0.2
    // @description Restores URLs in FieldView lists
    // @author mdmitry-AT-gmail.com
    // @match https://www.priority1.uk.net/fieldviewweb/*
    // @include https://www.priority1.uk.net/fieldviewweb/*
    // @grant none
    // ==/UserScript==

    let observer = new MutationObserver(function(mutationList, observer) {
    let wraps = document.getElementsByClassName('grid-user-action-link');
    for (let wrap of wraps) {
    let link = wrap.getElementsByTagName('a')[0];
    if (!link.href) {
    let ref = link.innerHTML;
    switch (ref[0]) {
    case 'T':
    link.href = '/fieldviewweb/tasks/edit/' + ref;
    link.setAttribute('onclick', 'return false');
    break;
    case 'F':
    link.href = '/fieldviewweb/forms/edit/' + ref;
    link.setAttribute('onclick', 'return false');
    break;
    }
    }
    }
    });
    observer.observe(document.body, {
    subtree: true,
    childList: true
    });

  • Dmitrij Maksimov commented
    November 14, 2022 10:37

    This obviously will not be fixed anytime soon, but you can fix this yourself:


    1. Install Tampermonkey (or Greasemonkey) browser add-on

    2. Create a new script in Tampermonkey

    3. Paste this code:
      // ==UserScript==
      // @name Field View URLs in lists fix
      // @namespace http://stsgroup.ie/
      // @version 0.1
      // @description Restores URLs in Field View lists
      // @author mdmitry-AT-gmail.com
      // @match https://www.priority1.uk.net/fieldviewweb/*
      // @include https://www.priority1.uk.net/fieldviewweb/*
      // @grant none
      // ==/UserScript==

      let observer = new MutationObserver(function(mutationList, observer) {
      let wraps = document.getElementsByClassName('grid-user-action-link');
      for (let wrap of wraps) {
      let link = wrap.getElementsByTagName('a')[0];
      if (!link.href) {
      let ref = link.innerHTML;
      switch (ref[0]) {
      case 'T': link.href = '/fieldviewweb/tasks/edit/' + ref; break;
      case 'F': link.href = '/fieldviewweb/forms/edit/' + ref; break;
      }
      }
      }
      });
      observer.observe(document.body, {
      subtree: true,
      childList: true
      });

    4. Save the script

    5. Reload the Field View page, now links in Tasks list and Forms list can be properly MiddleClicked or RightClicked (Ctrl+LeftClick or Shift+LeftClick will still not work properly)

Dear Viewpoint Suggestion Box contributor;

We at Viewpoint sincerely thank you for your contribution to Suggestion Box on how we can improve Viewpoint products. While we can’t do everything at once, we rely upon your feedback to help guide the prioritization of our product improvements, and Suggestion Box is a critical tool for us to understand and prioritize our customers’ needs. Viewpoint reviews Suggestion Box regularly for all of our products and updates statuses, adds comments, and performs various house-keeping (including deleting) as needed to ensure that Suggestion Box is maintained as a productive environment for product enhancements requests.

1515 SE Water Avenue, Suite 300, Portland, OR 97214 |  800.333.3197  | Contact Us | Terms of Use | Privacy | Support Policies

© 2023 Trimble Inc. All Rights Reserved. Viewpoint®, Vista™, Spectrum®, ProContractor™, Jobpac Connect™, Viewpoint Team™, Viewpoint Analytics™, Viewpoint Field View™, Viewpoint Estimating™, Viewpoint For Projects™, Viewpoint HR Management™, Viewpoint Field Management™, Viewpoint Financial Controls™, Vista Field Service™, Spectrum Service Tech™, ViewpointOne™, ProjectSight® and Trimble Construction One™ are trademarks or registered trademarks of Trimble Inc. or its affiliates in the United States and other countries. Other names and brands may be claimed as the property of others.