Table of Contents

Interface IFormComponentBinder

Namespace
Kentico.Forms.Web.Mvc
Assembly
Kentico.Content.Web.Mvc.dll

Defines contract for binding form components.

public interface IFormComponentBinder
Extension Methods

Methods

AddModelStateError(string, string)

Adds key with errorMessage to the model state.

void AddModelStateError(string key, string errorMessage)

Parameters

key string
errorMessage string

BindFormComponent(FormComponent, string, Predicate<string>)

Binds data to an instance of a model.

Task BindFormComponent(FormComponent model, string prefix, Predicate<string> propertyNameFilter = null)

Parameters

model FormComponent

Form component instance to which bind data from form collection.

prefix string

Prefix used in the form's inputs.

propertyNameFilter Predicate<string>

Predicate, based on property names, to filter which properties are to be bound.

Returns

Task

IsModelValid(string)

Checks whether model with specified prefix is valid.

bool IsModelValid(string prefix)

Parameters

prefix string

Returns

bool

True when model is valid, otherwise false.

PrebindComponentCollection(IEnumerable<FormComponent>, string)

Binds a collection of form components specified components while omitting attribute and System.ComponentModel.DataAnnotations.IValidatableObject.Validate(System.ComponentModel.DataAnnotations.ValidationContext) validation.

Task PrebindComponentCollection(IEnumerable<FormComponent> components, string prefix)

Parameters

components IEnumerable<FormComponent>
prefix string

Returns

Task

RemoveFromModelState(string)

Removes entries with specified prefix prefix from the model state.

void RemoveFromModelState(string prefix)

Parameters

prefix string

Validate(object, string)

Validates the model and adds error into the model state.

void Validate(object model, string prefix)

Parameters

model object

Object to validate.

prefix string

Keys added into the model state are prefixed with this value and a single '.' character.

See Also