Forum Replies Created
-
AuthorPosts
-
Ctrl + Shift + R makes no difference
I’ve asked a few people in the office to try it on Chrome and Firefox and they have the same issue.I’m hoping that our IT dept. will soon roll out SharePoint 2019 but I’ve been waiting for a few months for tat to happen 🙁
Alexander,
I’ve attached a screen grab of the network and what I see when I load the form.
Sorry there is no possibility to login.- This reply was modified 4 years, 10 months ago by Phil Grant.
Attachments:
I’ve tried it on one other unused list and it acted the same so I don’t think it’s anything to do with the JS etc.
With DFFS off the list works with DFFS on it stops.
DFFS version 4.4.4.0 July 21 2019
DFFS Installer version 1.1.0.7 – June 24 2019I can’t use installer 2 as I’m still on Sharepoint 2010.
- This reply was modified 4 years, 10 months ago by Phil Grant.
I get the opening splash screen then it times out and states “this took forever!”
Google Chrome is up to date
Version 80.0.3987.116 (Official Build) (64-bit)By the way, I get the same behavior in Firefox as Chrome.
My next problem is now that when I open the item in the list the form sticks on the splash screen and eventually times out, this happens on Chrome and Firefox, I have to copy the link to the list item an open it with IE.
If I uninstall DFFS from the list it opens the item fine.
Could it be something I’ve added into the DFFS form JavaScript ??
Anyone else come across this issue?
This is driving me crazy!!!
Found out that if the page is a webpart page then there’s no side navigation menu and no scrollbar, if the page is a normal page then the menu appears and the scrollbar.
I’ve realised that some pages containing charts have a vertical scrollbar and some don’t and it looks like the pages with a sidebar menu have a scrollbar and those pages that have no default left navigation menu don’t have a scrollbar.
I have had exactly the same problem, last week my work PC had windows updates applied (Windows 7) and all Google charts have stopped working.
I can get them to work in Chrome but I get no vertical scrollbar so that’s a pain.
IE11 has always worked in document mode 8 as we still use SharePoint 10 (due to change to 2019 in a few weeks).
I assume the update to windows was the the thing that killed Google charts but I don’t know what I can do about it!
Does everyone else running SharePoint 2010 have the missing vertical scrollbar in Chrome?
Cheers,
PhilThanks,
I figured out how to update the text in the form as well by using jQuery to change the text in the div tag.jQuery("#GRS").text("Golden Rules Status - " + currentStatus);
Quite pleased with the way it worked out in the end.
Alexander,
OK, I couldn’t get that to work no matter what I tried so I found this code// Trigger it on page load setHeaderColorByStatus(); // Trigger on change of the status field jQuery("#dffs_Status").on("change",function(){ setHeaderColorByStatus(); }); function setHeaderColorByStatus(){ var currentStatus = getFieldValue("Status"), bgc = "white", c = "black"; switch(currentStatus){ case "Not started": bgc = "yellow"; break; case "In progress": bgc = "blue"; c = "white"; break; case "Completed": bgc = "green"; c = "white"; break; } jQuery("#dffsHeading_headerOverStatus div").css({ "background-color":bgc, "color":c }); }
And I now have a header that changes background colour etc. on load and change but when I change the status field the colour changes OK but the text in the instance of {Golden_x0020_Rules_x0020_Status} in the html header doesn’t change to reflect the new choice. I assume this is because it is static once the page is rendered, can I do anything to force an update to that text?
Cheers,
Phil- This reply was modified 4 years, 11 months ago by Phil Grant.
- This reply was modified 4 years, 11 months ago by Phil Grant.
- This reply was modified 4 years, 11 months ago by Phil Grant.
OK thanks, I’ll give it a try tomorrow.
OK but will it set the background colour when the form opens or only when the status changes?
Phil
Alexander,
This is what I’m trying at the moment, as well as variations on the field name.
But I can’t seem to get it working.jQuery("#dffs_Golden_x0020_Rules_x0020_Status select").on("load",function(){ var bgColor = "white", txtColor = "black"; switch(jQuery(this).val()){ case "Approval Pending": bgColor = "yellow"; txtColor = "white"; break; case "Approval Not Required": bgColor = "green"; txtColor = "white"; break; case "Approved": bgColor = "green"; txtColor = "black"; break; } jQuery(this).parents("td:first").css({"background-color":bgColor,"color":txtColor}); }).trigger("load");
-
AuthorPosts