Hi @cooltechie,
Do you want to make the two Person fields within your Edit form read only?
I have made a test on my side, please take a try with the following workaround:
Unlock the corresponding Data card which contains the Person field, then set the DisplayMode property of the Combo Box control to following:
DisplayMode.Disabled
Set the DefaultSelectedItems property of the Combo Box control to following:
{
'@odata.type':"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedUser",
Claims:"i:0#.f|membership|" & Lower(User().Email),
DisplayName: User().FullName,
Email: User().Email
}
Best regards,
Kris