Hi there,
What happened to the option to rename a page? Looks like some item type configuration makes the title field readonly:
I found this code in PageEdit but not sure why that is used and what the alternative to renaming it here is.
If Not String.IsNullOrEmpty(p.MenuText) AndAlso Not String.IsNullOrEmpty(p.ItemType) Then
Dim itemType As ItemType = Content.Items.Metadata.MetadataManager.Current.GetItemType(p.ItemType)
If Not IsNothing(itemType) Then
If Not String.IsNullOrEmpty(itemType.Title) OrElse Not String.IsNullOrEmpty(itemType.FieldForTitle) Then
PageMenuText.Disabled = True
End If
End If
End If
Any pointers?
Imar