Table of Contents

Class GeneralSelectorComponent

Namespace
Kentico.Xperience.Admin.Base.Forms
Assembly
Kentico.Xperience.Admin.Base.dll

Enables user to select one or more items from a set of items. It uses the same client component as ObjectSelectorComponent. A set of available items is defined by DataProvider.

[ComponentAttribute(typeof(GeneralSelectorComponentAttribute))]
public sealed class GeneralSelectorComponent : GeneralSelectorComponentBase<GeneralSelectorProperties, ObjectSelectorClientProperties<string>, IEnumerable<string>>, IFormComponent, IFormItem<IFormComponentClientProperties>, IFormItem
Inheritance
object
GeneralSelectorComponentBase<GeneralSelectorProperties, ObjectSelectorClientProperties<string>, IEnumerable<string>>
GeneralSelectorComponent
Implements
Inherited Members
Extension Methods

Remarks

The component requires a IGeneralSelectorDataProvider implementation to provide items available to a user.

Constructors

GeneralSelectorComponent(IHttpContextAccessor, ILocalizationService)

Constructor.

public GeneralSelectorComponent(IHttpContextAccessor httpContextAccessor, ILocalizationService localizationService)

Parameters

httpContextAccessor IHttpContextAccessor

HTTP context accessor.

localizationService ILocalizationService

Localization service.

Properties

ClientComponentName

Name of the front-end type implementing the UI form component.

public override string ClientComponentName { get; }

Property Value

string

Methods

ConfigureClientProperties(ObjectSelectorClientProperties<string>)

Configures the form component client properties.

protected override Task ConfigureClientProperties(ObjectSelectorClientProperties<string> clientProperties)

Parameters

clientProperties ObjectSelectorClientProperties<string>

The current instance of the form component client properties.

Returns

Task

Remarks

Override this method in order to configure form component client properties.

ConfigureComponent()

Configures the form component. This method is called when all form component properties are set.

protected override void ConfigureComponent()

Remarks

Override this method to set component inner state, like additional component validation rules.

ConvertFormComponentSingleItemValue(IEnumerable<string>)

Extracts an array of selected object identifiers (of string type) from a collection containing items of a the string type.

protected override IEnumerable<string> ConvertFormComponentSingleItemValue(IEnumerable<string> value)

Parameters

value IEnumerable<string>

Component value.

Returns

IEnumerable<string>

ConvertFormComponentValue(IEnumerable<string>)

Extracts an array of selected object identifiers from component value for the sake of providing selected objects meta data to the client component.

protected override IEnumerable<string> ConvertFormComponentValue(IEnumerable<string> value)

Parameters

value IEnumerable<string>

Component value.

Returns

IEnumerable<string>