Enables gallery selection and ordering. Represents selections as a querystring of Gallery=GUID&Gallery=GUID&...
Supported Data Types
custom
Scripted Extension Configuration XML
<property id="propertyId" labelResourceName="nameResource" descriptionResourceName="descriptionResource" dataType="custom" template="core_v2_galleryOrder" key="Gallery" width="700" height="300" includeSubGroupsPropertyId="" visibilityPropertyId="" visibilityPropertyValue="" visibilityHideOtherIds="" groupPropertyId="" />
Plugin Configuration C#
var property = new Property
{
Id = "propertyId",
LabelResourceName = "nameResource",
DescriptionResourceName = "descriptionResource",
DataType = "custom",
Template = "core_v2_galleryOrder",
Options = new NameValueCollection
{
{ "key", "Gallery" },
{ "width", "700" },
{ "height", "300" },
{ "includeSubGroupsPropertyId", "" },
{ "visibilityPropertyId", "" },
{ "visibilityPropertyValue", "" },
{ "visibilityHideOtherIds", "" },
{ "groupPropertyId", "" }
}
};Options
| Name | Description | Default | Options |
|---|---|---|---|
| key | The name of the key when reading/writing enabled values in querystring format. | Gallery | |
| width | The pixel width of the UI. | 700 | |
| height | The pixel height of the UI. | 300 | |
| includeSubGroupsPropertyId | The ID of a property that contains a boolean value identifying if sub-groups' gallerys should be included or not. | ||
| 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. | ||
| groupPropertyId | The ID of a property that is used to select the group for which gallerys should be loaded. |