Skip to Main Content
Customer Feedback

We love feedback from you on our products and the problems in your daily work that you would like us to solve. Please describe the challenge you're encountering and your desired outcome. Be as detailed as possible.

For technical issues or bugs please head to Support or our Developer Community. You can assign up to 20 votes in total. Thank you for your feedback.

Status explanation: 'Future Consideration' = Continuing to collect further feedback, not planned at this time. 'Investigating' = Prioritized for deeper customer and feasibility investigations ahead of planning development.

Categories Editing
Created by Guest
Created on Sep 22, 2023

Manipulate commands for PageReferenceEditorDescriptor

For CollectionEditorDescriptor there exist a collection of available commands that we can manipulate


 public class ContactPersonCollectionEditorDescriptor : CollectionEditorDescriptor<ContactPerson>

{
public override void ModifyMetadata(ExtendedMetadata metadata, IEnumerable<Attribute> attributes)
{
GridDefinition.Commands -= CollectionEditorCommands.Edit;

base.ModifyMetadata(metadata, attributes);
}
}


I would like to have this for PageReferenceEditorDescriptor asweel, but can not find this option.

My customer do not want the "Edit" option available, because they find it confusion.