Table of Contents

Class ContactEditDialog

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

Contact group edit dialog.

[UIPageLocation(PageLocationEnum.Dialog)]
[UINavigation(false)]
[UIBreadcrumbs(false)]
public sealed class ContactEditDialog : ModelEditPage<ContactPersonalDetailsModel>, IPage
Inheritance
object
ContactEditDialog
Implements
Inherited Members
Extension Methods

Constructors

ContactEditDialog(IFormItemCollectionProvider, IFormDataBinder, IInfoProvider<StateInfo>)

Initializes an instance of the ContactEditDialog class.

public ContactEditDialog(IFormItemCollectionProvider formItemCollectionProvider, IFormDataBinder formDataBinder, IInfoProvider<StateInfo> stateInfoProvider)

Parameters

formItemCollectionProvider IFormItemCollectionProvider
formDataBinder IFormDataBinder
stateInfoProvider IInfoProvider<StateInfo>

Properties

Model

Gets edited model that represents the contact.

protected override ContactPersonalDetailsModel Model { get; }

Property Value

ContactPersonalDetailsModel

ObjectId

ID of the contact.

[PageParameter(typeof(IntPageModelBinder))]
public int ObjectId { get; set; }

Property Value

int

Methods

ConfigurePage()

Set up page's configuration. Configures the submit action.

public override Task ConfigurePage()

Returns

Task

GetObjectDisplayName(ContactPersonalDetailsModel)

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(ContactPersonalDetailsModel model)

Parameters

model ContactPersonalDetailsModel

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

ProcessFormData(ContactPersonalDetailsModel, ICollection<IFormItem>)

Stores the model and creates a response for the Submit(FormSubmissionCommandArguments) command.

protected override Task<ICommandResponse> ProcessFormData(ContactPersonalDetailsModel model, ICollection<IFormItem> formItems)

Parameters

model ContactPersonalDetailsModel

Model to be stored.

formItems ICollection<IFormItem>

Form items with bound component values.

Returns

Task<ICommandResponse>

The response to be used for the Submit(FormSubmissionCommandArguments) command.