Is there a problem with AbstractDataEditor in Umbraco 4.5.2?
Hi all,
I've developed my very first custom data type by implementing the AbstractDataEditor, but it doesn't seem to be working. I've modeled my data type using the example by Tim G, and looks something similar to this:
public class ModulesDataType : AbstractDataEditor {
TextBox _control = new TextBox();
public override Guid Id
{
get
{
return new Guid("89a4118b-d129-4f8f-ae75-a3d23c2abcc1");
}
}
public override string DataTypeName
{
get
{
return "Test";
}
}
public ModulesDataType()
{
base.RenderControl = _control;
_control.Init += new EventHandler(_control_Init);
base.DataEditorControl.OnSave += new AbstractDataEditorControl.SaveEventHandler(DataEditorControl_OnSave);
Is there a problem with AbstractDataEditor in Umbraco 4.5.2?
Hi all,
I've developed my very first custom data type by implementing the AbstractDataEditor, but it doesn't seem to be working. I've modeled my data type using the example by Tim G, and looks something similar to this:
What is wrong with the code above? Is there a bug in Umbraco 4.5.2 with AbstractDataEditor?
I would really like to edit the text above, but it is currently not possible.
My bad. My problem was not at all related to the code described above, but was purely a misconfigured umbraco environment.
is working on a reply...