Domanda

In a list with two content types - both with the same field "Title", I need to make the field readonly in one of the content types, but not the other (in one the title is manually set, in the other the title is set by code).

Is this possible?

È stato utile?

Soluzione

You can do this in PowerShell as follows:

$fieldLink = $list.ContentTypes["YourCT"].FieldLinks | where {$_.Name -eq "YourField"}
$fieldLink.ReadOnly = $true
$list.ContentTypes["YourCT"].Update()
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a sharepoint.stackexchange
scroll top