Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
Here is an example on how to do it from an IInitializableModule
public void Initialize(InitializationEngine context) { var propertyControlFactory = context.Locate.Advanced.GetInstance<IPropertyControlFactory>(); propertyControlFactory.TryRegister<MyPropertyData, MyPropertyControl>(); }
Hey everybody here.
I am stuck with an old custom property that we will later remove so I would not like to update it to DOJO, just do as it worked in Epi 7, with this ugly button.
The problem is that with 11, I need to change to use IPropertyControlFactory and I can not find anywhere or any example on how to use that.