문제

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?

도움이 되었습니까?

해결책

You can do this in PowerShell as follows:

$fieldLink = $list.ContentTypes["YourCT"].FieldLinks | where {$_.Name -eq "YourField"}
$fieldLink.ReadOnly = $true
$list.ContentTypes["YourCT"].Update()
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top