Enables user profile group selection and ordering. Represents selections as a querystring of UserProfileGroup=ID&UserProfileGroup=ID&...
Supported Data Types
custom
Scripted Extension Configuration XML
<property id="propertyId" labelResourceName="nameResource" descriptionResourceName="descriptionResource" dataType="custom" template="core_v2_userProfileGroupOrder" key="UserProfileGroup" width="700" height="300" visibilityPropertyId="" visibilityPropertyValue="" visibilityHideOtherIds="" />
Plugin Configuration C#
var property = new Property
{
Id = "propertyId",
LabelResourceName = "nameResource",
DescriptionResourceName = "descriptionResource",
DataType = "custom",
Template = "core_v2_userProfileGroupOrder",
Options = new NameValueCollection
{
{ "key", "UserProfileGroup" },
{ "width", "700" },
{ "height", "300" },
{ "visibilityPropertyId", "" },
{ "visibilityPropertyValue", "" },
{ "visibilityHideOtherIds", "" }
}
};Options
| Name | Description | Default | Options |
|---|---|---|---|
| key | The name of the key when reading/writing enabled values in querystring format. | UserProfileGroup | |
| width | The pixel width of the UI. | 700 | |
| height | The pixel height of the UI. | 300 | |
| visibilityPropertyId | The ID of a property to monitor to control the visibility of this UI. When the value of this property is equal to visibilityPropertyValue, this UI will be shown. | ||
| visibilityPropertyValue | The value of the visibilityPropertyId property that causes this UI to be shown. | ||
| visibilityHideOtherIds | Comma-separated list of property IDs to hide when this UI is shown based on visibilityPropertyId/visibilityPropertyValue configuration. |