Class ReusableFieldSchemaEdit
General tab of the reusable schema edit page.
public sealed class ReusableFieldSchemaEdit : ReusableFieldSchemaEditBase, IPage
- Inheritance
-
objectReusableFieldSchemaEdit
- Implements
- Inherited Members
- Extension Methods
Constructors
ReusableFieldSchemaEdit(IFormItemCollectionProvider, IFormDataBinder, IReusableFieldSchemaManager)
Initializes a new instance of the ReusableFieldSchemaEdit class.
public ReusableFieldSchemaEdit(IFormItemCollectionProvider formItemCollectionProvider, IFormDataBinder formDataBinder, IReusableFieldSchemaManager schemaManager)
Parameters
formItemCollectionProvider
IFormItemCollectionProviderformDataBinder
IFormDataBinderschemaManager
IReusableFieldSchemaManager
Properties
SchemaGuid
Name of the schema.
[PageParameter(typeof(GuidPageModelBinder))]
public Guid SchemaGuid { get; set; }
Property Value
- Guid
Methods
ConfigurePage()
Set up page's configuration. Configures the submit action.
public override Task ConfigurePage()
Returns
- Task
GetFormItems()
protected override Task<ICollection<IFormItem>> GetFormItems()
Returns
- Task<ICollection<IFormItem>>
Remarks
Override the method in case when additional set-up of form components is required.
GetModel()
Gets the ReusableFieldSchemaModel model.
protected override ReusableFieldSchemaModel GetModel()
Returns
ProcessFormData(ReusableFieldSchemaModel, ICollection<IFormItem>)
Stores the model
and creates a response for the Submit(FormSubmissionCommandArguments) command.
protected override Task<ICommandResponse> ProcessFormData(ReusableFieldSchemaModel model, ICollection<IFormItem> formItems)
Parameters
model
ReusableFieldSchemaModelModel 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.