Table of Contents

Class ObjectSelectorPropertiesBase

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

Object selector properties.

public abstract class ObjectSelectorPropertiesBase : FormComponentProperties, IFormComponentProperties
Inheritance
object
ObjectSelectorPropertiesBase
Implements
Derived
Inherited Members
Extension Methods

Properties

IdentifierColumn

The column name used to identify the object.

public string IdentifierColumn { get; set; }

Property Value

string

IdentifyObjectByGuid

Indicates whether the Object selector uses the object's GUID column value to identify the object. If set to false the object's code name column value is used. Defaults to false.

public bool IdentifyObjectByGuid { get; set; }

Property Value

bool

Remarks

It's recommended to have it set to false, i.e. identify objects by their code names if a performance is a concern. The reason is that most system object types incorporate provider-level cache by the object's code name, not its GUID.

MenuType

Type of the menu.

public ObjectSelectorMenuType MenuType { get; set; }

Property Value

ObjectSelectorMenuType

ObjectType

Defines which objects will be displayed in the selector.

[RequiredValidationRule]
public virtual string ObjectType { get; set; }

Property Value

string

Remarks

If the given object type declares a relation (either direct or via a binding entity) between an object of that type and a site then the current site's objects are only returned by default.

See Also

OrderBy

Defines a list of columns which the data should be sorted by, e.g. ["NodeLevel", "DocumentName DESC"]

public string[] OrderBy { get; set; }

Property Value

string[]

Placeholder

Placeholder text.

public string Placeholder { get; set; }

Property Value

string

WhereCondition

Where condition that will be applied to the database query.

public WhereCondition WhereCondition { get; set; }

Property Value

WhereCondition

Remarks

If the WhereConditionProviderType property is also configured, the where conditions will be combined using the AND operator.

WhereConditionProviderType

Defines the type which provides the WhereCondition that will be applied to the database query.

The where condition provider type must implement the IObjectSelectorWhereConditionProvider interface.

public Type WhereConditionProviderType { get; set; }

Property Value

Type

Remarks

If the WhereCondition property is also configured, the where conditions will be combined using the AND operator.