Table of Contents

Class FormComponentCommandModel

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

Represents model of a page command for invoking a form component command.

public class FormComponentCommandModel : IFormComponentCommandInvocationModel
Inheritance
object
FormComponentCommandModel
Implements
Extension Methods

Fields

DEFAULT_FORM_NAME

The default value of FormName used by the client, if the client form does not specify a name.

public const string DEFAULT_FORM_NAME = "DefaultForm"

Field Value

string
See Also

Properties

AdditionalActionIdentifier

Name of the additional action the command is invoked within.

public string AdditionalActionIdentifier { get; set; }

Property Value

string

Remarks

Optional if additional actions aren't used.

CommandData

Data for the command as a JSON string.

public string CommandData { get; set; }

Property Value

string

CommandName

Name of the component command to invoke.

public string CommandName { get; set; }

Property Value

string

FieldName

Name of the field to retrieve the component for on which to invoke the command.

public string FieldName { get; set; }

Property Value

string

FieldValues

Dictionary containing the field values.

public Dictionary<string, JsonElement> FieldValues { get; set; }

Property Value

Dictionary<string, JsonElement>

Files

Files sent in the command.

public IUploadedFilesCollection Files { get; set; }

Property Value

IUploadedFilesCollection

FormName

Name of the form the component belongs to. If not specified by the client, the DEFAULT_FORM_NAME is used.

public string FormName { get; set; }

Property Value

string
See Also