Version 11.1 - wondering the proper interface to implement if I wanted to create a custom Widget Configuration property.
I believe in prior versions I used an IPropertyControl
Version 11.1 - wondering the proper interface to implement if I wanted to create a custom Widget Configuration property.
I believe in prior versions I used an IPropertyControl
I added this here: It shows in the API docs XML config now, but not sure how to access it in the Render method.
public PropertyTemplateOption[] Options
{
get
{
var item = new PropertyTemplateOption("taxonomyKey", "contenttypes");
item.IsSelectableValueOption = false;
var options = new List<PropertyTemplateOption>();
options.Add(item);
return options.ToArray();
}
}I think I got it...Thanks for all the help on this!