Phil Grant

Forum Replies Created

Viewing 15 posts - 46 through 60 (of 134 total)
  • Author
    Posts
  • in reply to: DFFS forms no longer open in Chrome #28854
    Phil Grant
    Participant

    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 🙁

    in reply to: DFFS forms no longer open in Chrome #28847
    Phil Grant
    Participant

    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, 1 month ago by Phil Grant.
    in reply to: DFFS forms no longer open in Chrome #28825
    Phil Grant
    Participant

    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.

    in reply to: DFFS forms no longer open in Chrome #28816
    Phil Grant
    Participant

    DFFS version 4.4.4.0 July 21 2019
    DFFS Installer version 1.1.0.7 – June 24 2019

    I can’t use installer 2 as I’m still on Sharepoint 2010.

    • This reply was modified 4 years, 1 month ago by Phil Grant.
    in reply to: DFFS forms no longer open in Chrome #28808
    Phil Grant
    Participant

    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)

    in reply to: DFFS forms no longer open in Chrome #28800
    Phil Grant
    Participant

    By the way, I get the same behavior in Firefox as Chrome.

    in reply to: V6 Charts Stopped Working in IE11 #28777
    Phil Grant
    Participant

    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!!!

    in reply to: V6 Charts Stopped Working in IE11 #28765
    Phil Grant
    Participant

    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.

    in reply to: V6 Charts Stopped Working in IE11 #28763
    Phil Grant
    Participant

    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.

    in reply to: V6 Charts Stopped Working in IE11 #28753
    Phil Grant
    Participant

    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,
    Phil

    in reply to: Conditional formatting in the Misc HTML header #28292
    Phil Grant
    Participant

    Thanks,
    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.

    in reply to: Conditional formatting in the Misc HTML header #28275
    Phil Grant
    Participant

    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, 2 months ago by Phil Grant.
    • This reply was modified 4 years, 2 months ago by Phil Grant.
    • This reply was modified 4 years, 2 months ago by Phil Grant.
    in reply to: Conditional formatting in the Misc HTML header #28254
    Phil Grant
    Participant

    OK thanks, I’ll give it a try tomorrow.

    in reply to: Conditional formatting in the Misc HTML header #28248
    Phil Grant
    Participant

    OK but will it set the background colour when the form opens or only when the status changes?

    Phil

    in reply to: Conditional formatting in the Misc HTML header #28242
    Phil Grant
    Participant

    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");
Viewing 15 posts - 46 through 60 (of 134 total)