Сustom plugin configuration UI

We're developing a plugin for Telligent and recently faced a problem finding an example of custom plugin configuration UI

https://community.telligent.com/community/11/w/api-documentation/65619/irenderableconfigurableplugin-v2-plugin-type

Can please provide one?

Thanks a lot!



Upd link
[edited by: intento at 9:17 AM (GMT 0) on Tue, Apr 13 2021]
Parents Reply
  • Former Member
    0 Former Member in reply to intento

    When defining your string property in your IConfigurablePlugin implementation, try adding the obscure = true to the property.

    				var passwordProperty = new Property
    				{
    					Id = "password",
    					LabelText = "Password Text Field",
    					DataType = "String",
    					OrderNumber = 1,
    					DefaultValue = string.Empty
    				};
    				passwordProperty.Options["obscure"] = "true";

Children