orchard cms: how to add media picker field to a custom part
My question is simmalar to questions/10369967/orchard-cms-how-to-add-media-picker-field-to-anew-module I've created a new content part, that has a select list, a text box and ... I want to include a media picker filed. I have added this to the content part with Bertrand Le Roy's suggestion of: ContentDefinitionManager.AlterPartDefinition("Product", builder => builder.WithField("ProductImage", fieldBuilder => fieldBuilder .OfType("MediaPickerField") .WithDisplayName("Product Image"))); However I've no idea of how to show this in my custom editor View I'm sure there should be something easy like