Craig Campbell

Forum Replies Created

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • in reply to: CSS style of selected tab #20355
    Craig Campbell
    Participant

    Thank you Alexander that works great!

    in reply to: Save/Cancel Button Background color #20318
    Craig Campbell
    Participant

    Thanks Alexander this works great now.

    in reply to: Save/Cancel Button Background color #20273
    Craig Campbell
    Participant

    Hi Alexander
    I figured out the background issue and I can change the text size, color and background color for all buttons in the Edit and New forms. But it will not allow me to change for the Edit Item in the Display form. I can change the Close button in the dsiplay form. Thanks so much for your help.

    Here is my code:
    {
    var inputs = document.getElementsByTagName(“input”);
    for(i = 0; i<inputs.length; i++)
    for(j = 0; j<inputs.length; j++)
    {
    if(inputs[i].type == “button” && inputs[i].value == “Edit Item”)
    inputs[i].value = “Make Changes”;
    inputs[i].style.color = “white”;
    inputs[i].style.background = “#849c32”;
    inputs[i].style.weight = “Bold”;
    inputs[i].style.width= “40px”;
    inputs[i].style.height = “auto”;
    // change button font size
    inputs[i].style.fontSize = “14px”;
    if(inputs[j].type == “button” && inputs[j].value == “Close”)
    inputs[j].value = “Exit”;
    inputs[j].style.color = “white”;
    inputs[j].style.background = “#849c32”;
    inputs[j].style.weight = “Bold”;
    inputs[j].style.width= “auto”;
    inputs[j].style.height = “auto”;
    // change button font size
    inputs[j].style.fontSize = “14px”;
    }
    }

    in reply to: CSS style of selected tab #20266
    Craig Campbell
    Participant

    Hi alex, is there a way to change the size and color of the other tabs that are not selected?

    in reply to: setFieldValue to get Direct Reports of a Manager #20260
    Craig Campbell
    Participant

    Thanks Alex. It turns out that this is a hidden calculated field and is not available through the the userprofile.

    in reply to: Display Attchments of Child item in vLookup #17642
    Craig Campbell
    Participant

    Yes I had already done that. I guess I took the snapshot before I made the change.

    After hitting F12 I found 4011 error accessing SPJS library. When I went in there I could not see anything. I received a Web Part Error.

    Web Part Error: A Web Part or Web Form Control on this Page cannot be displayed or imported. The type could not be found or it is not registered as safe. Correlation ID: d0100c9e-22e8-b0b1-cdfb-d4c838375edf.

    I just upgraded this site to 4.41

    in reply to: Display and click through to attachments on child list #17534
    Craig Campbell
    Participant

    Hi alexander I am trying to implement this on one of my lists. I can get the Paper Clip to appear and make it clickable but it does not bring anything up. Can you help me out with this?

Viewing 7 posts - 1 through 7 (of 7 total)