Hello,
I'm stuggling with finding documentation on how to work exactly with configurable add-ins. Is it possible to add add-in parameters to a ProductTemplateExtender ? If so, where are they set in the backend ?
Here's an example code of what I'd like to do :
[AddInName("MyProductTemplateExtender")]
[AddInIsEditable(true)]
[AddInActive(true)]
public class MyProductTemplateExtender : ProductTemplateExtender
{
[AddInParameter("MyParameter")]
[AddInLabel("My Parameter")]
[AddInParameterEditor(typeof(TextParameterEditor), "")]
public string MyParameter{get;set;}
public override void ExtendTemplate(Template template)
{
template.SetTag("MyTag", MyParameter);
}
}
Thanks