Click or drag to resize
RecordedDataFormProviderSetBizFormItemData Method
Sets data from visibleFormComponents to given formItem as well as setting all other non-system form fields to NULL.

Namespace: Kentico.Forms.Web.Mvc.Internal
Assembly: Kentico.Content.Web.Mvc (in Kentico.Content.Web.Mvc.dll) Version: 12.0.0
Syntax
C#
protected override void SetBizFormItemData(
	BizFormItem formItem,
	List<FormComponent> visibleFormComponents
)

Parameters

formItem
Type: CMS.OnlineFormsBizFormItem
Form item to which data is set.
visibleFormComponents
Type: System.Collections.GenericListFormComponent
Collection of visible form components from which to set data inside formItem.
Remarks
Overriding base implementation to set all other non-system fields in formItem to NULL as editing formItem in the Recorder data tab might hide a form component previously used to fill a column, therefore, the value of that column is set to NULL.
See Also