Hello,
We developed a custom control that inherited the ListEditor<T> and worked fine, until 9.10 when the method RenderList has been marked as internal:
internal virtual void RenderList(TextWriter output, T selectedItem)
{
throw new NotImplementedException();
}
This means that we can no longer override it since it's internal, while the custom control it's defined in an external assembly. While all Dynamicweb's controls that inherit this list work fine (DropDownListEditor<T>, CheckboxListEditor<T> etc.) since they are defined in the same assembly, custom controls won't work anymore after this change, and we receive the NotImplementedException.
Is there any alternative way to make this work again?
Regards,
Emil