Table of Contents

Class ReusableFieldSchemaEditBase

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

Reusable schema edit page base.

public abstract class ReusableFieldSchemaEditBase : ModelEditPage<ReusableFieldSchemaModel>, IPage
Inheritance
object
ReusableFieldSchemaEditBase
Implements
Derived
Inherited Members
Extension Methods

Remarks

This API supports the framework infrastructure and is not intended to be used directly from your code.

Constructors

ReusableFieldSchemaEditBase(IFormItemCollectionProvider, IFormDataBinder, IReusableFieldSchemaManager)

Initializes a new instance of the ReusableFieldSchemaEdit class.

[Obsolete("Method was not intended for public use and will be removed in the next version.")]
[ObsoleteSince(29, 2)]
public ReusableFieldSchemaEditBase(IFormItemCollectionProvider formItemCollectionProvider, IFormDataBinder formDataBinder, IReusableFieldSchemaManager schemaManager)

Parameters

formItemCollectionProvider IFormItemCollectionProvider
formDataBinder IFormDataBinder
schemaManager IReusableFieldSchemaManager

Properties

Model

Gets edited model that represents the form.

protected override ReusableFieldSchemaModel Model { get; }

Property Value

ReusableFieldSchemaModel

SchemaManager

Reusable schema manager.

protected IReusableFieldSchemaManager SchemaManager { get; }

Property Value

IReusableFieldSchemaManager

Methods

GetModel()

Gets the ReusableFieldSchemaModel model.

protected abstract ReusableFieldSchemaModel GetModel()

Returns

ReusableFieldSchemaModel

GetObjectDisplayName(ReusableFieldSchemaModel)

Gets object display name to be used in breadcrumbs, navigation items etc. if they have to be updated after the Submit(FormSubmissionCommandArguments) command success.

protected override Task<string> GetObjectDisplayName(ReusableFieldSchemaModel model)

Parameters

model ReusableFieldSchemaModel

Currently processed model.

Returns

Task<string>

The object display name to be used in breadcrumbs, navigation items etc., or null, should the display name not be changed after the Submit(FormSubmissionCommandArguments) command success.

See Also