Table of Contents

Class PageStateConstants.FormStateKeys

Namespace
Htmx.Components.State
Assembly
Htmx.Components.dll

Contains constant keys used for form-related page state management. These keys are used to store and retrieve form editing state information.

public static class PageStateConstants.FormStateKeys
Inheritance
PageStateConstants.FormStateKeys
Inherited Members

Fields

EditingExistingRecord

The key used to indicate whether the form is editing an existing record or creating a new one. This boolean flag helps determine the appropriate form behavior and validation rules.

public const string EditingExistingRecord = "EditingExistingRecord"

Field Value

string

EditingItem

The key used to store the item currently being edited in a form. This typically contains the model instance that the user is modifying.

public const string EditingItem = "EditingItem"

Field Value

string

Partition

The partition key used to organize form-related state data. This helps separate form state from other types of page state.

public const string Partition = "Form"

Field Value

string