Class ObjectSelectorProperties
- Namespace
- Kentico.Components.Web.Mvc.FormComponents
- Assembly
- Kentico.Content.Web.Mvc.dll
Represents properties of the ObjectSelector.
public class ObjectSelectorProperties : ObjectSelectorPropertiesBase<ObjectSelectorItem>, IObjectSelectorPropertiesBase
- Inheritance
-
objectObjectSelectorProperties
- Implements
- Inherited Members
- Extension Methods
Properties
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.
It's recommended to have it set to false, ie. 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.
public bool IdentifyObjectByGuid { get; set; }
Property Value
- bool
ObjectType
Defines which objects will be displayed in the selector.
public 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 IEnumerable<string> OrderBy { get; set; }
Property Value
- IEnumerable<string>
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