I'm starting to write my own sharepoint helperclass with functions
that can be called without knowing the ID's of the Sharepoint Fields,
but by using the field Display Names.
This function is to Disable or Enable a Sharepoint PeoplePicker Field.
// call the function
// DisablePeoplePicker ("DISPLAYNAME", True) to disable the field
// DisablePeoplePicker ("DISPLAYNAME", False) to enable the field
function DisablePeoplePicker( titel, b_disable)
{
$('nobr:contains("'+titel+'")').closest("td").next("td").find("div").attr("contentEditable",false);
if (b_disable)
{
$('nobr:contains("'+titel+'")').closest("td").next("td").find("div").css("backgroundColor","silver");
$('nobr:contains("'+titel+'")').closest("td").next("td").find("img").hide();
}
else
{
$('nobr:contains("'+titel+'")').closest("td").next("td").find("div").css("backgroundColor","white");
$('nobr:contains("'+titel+'")').closest("td").next("td").find("img").show();
}
}
Geen opmerkingen:
Een reactie posten