Enables rendering of properties to select user profile fields. Stored as a querystring in the format Name=STRING&Name=STRING
Supported Data Types
custom
Scripted Extension Configuration XML
<property id="propertyId" labelResourceName="nameResource" descriptionResourceName="descriptionResource" dataType="custom" template="core_v2_userProfileFields" singleSelect="false" />
Plugin Configuration C#
var property = new Property
{
Id = "propertyId",
LabelResourceName = "nameResource",
DescriptionResourceName = "descriptionResource",
DataType = "custom",
Template = "core_v2_userProfileFields",
Options = new NameValueCollection
{
{ "singleSelect", "false" }
}
};Options
| Name | Description | Default | Options |
|---|---|---|---|
| singleSelect | When true, only a single profile field can be selected. | false | true, false |