Get Specific Elements Blocks from EPiServer Forms
A small extension to get the specific form elements block with all properties rather relying on FriendlyNameInfo with the limited set of properties. EPi Form Extensions Gist Example: Custom form element block: public class HiddenExternalValueElementBlock : HiddenElementBlockBase { [ Display (Name = "Enable if its a special campaign" )] public virtual bool MySpecialCampaign { get ; set ; } [ Display (Name = "Propperty 1" )] public virtual bool Property1 { get ; set ; } [ Display (Name = "Property 2" )] public virtual bool Property2 { get ; set ; } } Extension Methods: using EPiServer.Core; using EPiServer.F...