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 got all of this working. Is it possible to pass custom attributes to the Control? in the XML config? Like this:
<property id="test" taxonomyItem="ContentType"
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();
}
}