Hello,
when using the new EPiServer.Forms module how do you add it to the AllowedTypes attribute of a page type definition, the way you would with any other block type definition?
[AllowedTypes(typeof(SomeBlock), typeof(<>< EPiServer.Forms ? >>))]>
BR
Patrik
If you want to allow forms in your ContentArea add the type FormContainerBlock
[AllowedTypes(typeof(FormContainerBlock))] public virtual ContentArea FormArea { get; set; }
/Mark
Hello,
when using the new EPiServer.Forms module how do you add it to the AllowedTypes attribute of a page type definition, the way you would with any other block type definition?
BR
Patrik