Extremely useful when you need to open several forms at once. Will save lots of time and effort. See screenshot for exact implementation details.
Company | STS |
I need it... | Yesterday...Come on already |
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.
© 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.
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
});
This obviously will not be fixed anytime soon, but you can fix this yourself:
Install Tampermonkey (or Greasemonkey) browser add-on
Create a new script in Tampermonkey
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
});
Save the script
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)