Hi,
I wanted to provide a feature to upload a file using configurable property in the plugin.
I have done this feature in Telligent 10x, see the following code snipped.
Property property1 = new Property("PublicKey", "Certificate*", PropertyType.Custom, 3, "")
{
ControlType = typeof(Controls.CertificatePropertyControl)
};
I am trying to do this in Telligent 11x,
Property property1 = new Property
{
Id = "PublicKey",
LabelText = "Certificate",
DataType = "Custom",
OrderNumber = 0,
DefaultValue = "",
Template= ?
};
Can you please help me to get this done.
Regards,
Aravind Eriventy.