Join us this Friday for AI in Action at the Virtual Happy Hour! This free virtual event is open to all—enroll now on Academy and don’t miss out.
Join us this Friday for AI in Action at the Virtual Happy Hour! This free virtual event is open to all—enroll now on Academy and don’t miss out.
I've tried
Properties.Add("Content", new EPiServer.Core.PropertyContentReference());
but it has no visual display when rendering in the context of a "Dynamic content form"
I have also tried:
Properties.Add("ContentArea", new EPiServer.SpecializedProperties.PropertyContentArea());
which outputs the text "Drag blocks and pages here" , which doesn't make sense as we are in a dialog context, so all everything else in greyed out and unclickable
I guess Dynic Content doesn't have support for the newer editors/property controls. Dynamic Content is kinda obsolete anyway, so try to migrate to new functionality instead if possible.
Hi, we are migrating from EPi6 to Epi7.5+
in our 6 dynamic controls we had (IDynamicContentControl)
Properties.Add("someName", new PropertyUrl());
which worked fine for selecting files from our vpp,
But now our vpp files have been migrated to blobs
Properties.Add("somePageRef", new PropertyPageReference());
Only shows page selection, not blob selection.
Is their an inbuilt property to use?
I looked in:
EPiServer.Core
EPiServer.SpecializedProperties
but found nothing useful