Forum Replies Created
-
AuthorPosts
-
Thank you Alexander that works great!
Thanks Alexander this works great now.
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”;
}
}Hi alex, is there a way to change the size and color of the other tabs that are not selected?
Thanks Alex. It turns out that this is a hidden calculated field and is not available through the the userprofile.
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
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?
-
AuthorPosts