I am trying to build custom dropdown field for umbraco form.
So, I have created my own class (C#)
public class SampleDropdown: Umbraco.Forms.Core.FieldType
and created custom properties like
[Umbraco.Forms.Core.Attributes.Setting("API Url", Description = "Enter Web API Value for Date feed", View = "TextField")]
public string APIUrl { get; set; }
This property will be used by Form creators.
I not sure how to call api within c# class. There are no databinding event
Custom Dropdown field with API
I am trying to build custom dropdown field for umbraco form.
So, I have created my own class (C#)
and created custom properties like
This property will be used by Form creators.
I not sure how to call api within c# class. There are no databinding event
is working on a reply...