Class BizFormItem
- Namespace
- CMS.OnlineForms
- Assembly
- CMS.OnlineForms.dll
BizFormInfo stores information about form builder components configuration and other settings available in general side panel. FormClassInfo stores the form definition of the form. BizFormItem stores the data that visitors fill on the website.
[InfoCache(InfoCacheBy.ID)]
public class BizFormItem : AbstractInfoBase<BizFormItem>, IExtensible, IInfo, IAdvancedDataContainer, ICMSObject, IHierarchicalDataContainer, IDataContainer, ISimpleDataContainer, IVirtualHierarchicalObject, IHierarchicalObject, INameIndexable, IMacroObject
- Inheritance
-
objectBizFormItem
- Implements
- Inherited Members
- Extension Methods
Constructors
BizFormItem()
Constructor
[Obsolete("This constructor is meant for system purposes, it shouldn't be used directly.")]
public BizFormItem()
BizFormItem(string, DataRow)
Base constructor for inherited classes and internal purposes
public BizFormItem(string className, DataRow dr = null)
Parameters
className
stringClass name of the document
dr
DataRowData row with the data
Properties
BizFormClassName
Gets class name of BizForm item.
public virtual string BizFormClassName { get; }
Property Value
- string
BizFormInfo
BizForm which this item belongs to.
public BizFormInfo BizFormInfo { get; }
Property Value
DataClassInfo
DataClass info
protected DataClassInfo DataClassInfo { get; }
Property Value
FormInserted
Gets or sets BizForm item insertion date.
public DateTime FormInserted { get; set; }
Property Value
- DateTime
FormUpdated
Gets or sets date of modification of BizForm item.
public DateTime FormUpdated { get; set; }
Property Value
- DateTime
ItemID
Gets or sets BizForm item ID.
public int ItemID { get; set; }
Property Value
- int
ObjectDisplayName
Object display name.
protected override string ObjectDisplayName { get; set; }
Property Value
- string
ObjectParent
Gets or sets BizForm which this item belongs to.
protected override BaseInfo ObjectParent { get; set; }
Property Value
Methods
Clone()
Creates a clone of BizForm item
public override BizFormItem Clone()
Returns
DeleteData()
Deletes the object from the database while invoking the Delete event.
protected override void DeleteData()
DeleteDataAsync(CancellationToken)
Asynchronously deletes the object from the database while invoking the Delete event.
protected override Task DeleteDataAsync(CancellationToken cancellationToken)
Parameters
cancellationToken
CancellationTokenThe cancellation instruction.
Returns
- Task
DeleteObject()
Deletes the object using appropriate provider.
protected override void DeleteObject()
GetValue(string)
Gets BizForm item value.
public override object GetValue(string columnName)
Parameters
columnName
string
Returns
- object
Initialize(string, IDataContainer)
Initializes the object created with default constructor. Use it to load existing item from data row.
protected void Initialize(string className, IDataContainer data)
Parameters
className
stringClass name
data
IDataContainerData container containing all page data
Initialize(string, DataRow)
Initializes the object created with default constructor. Use it to load existing item from data row.
protected void Initialize(string className, DataRow dr)
Parameters
className
stringClass name
dr
DataRowData row containing all page data
InsertData()
Inserts the object to the database while invoking the Insert event.
protected override void InsertData()
InsertDataAsync(CancellationToken)
Asynchronously inserts the object to the database while invoking the Insert event.
protected override Task InsertDataAsync(CancellationToken cancellationToken)
Parameters
cancellationToken
CancellationTokenThe cancellation instruction.
Returns
- Task
New(string, DataRow)
Creates new BizFormItem instance which must inherit the BizFormItem class.
public static BizFormItem New(string className, DataRow dataRow = null)
Parameters
className
stringClass name in format application.class
dataRow
DataRowData row containing both tree node and coupled table
Returns
NewObject(LoadDataSettings)
Creates a new object from the given DataRow
protected override BaseInfo NewObject(LoadDataSettings settings)
Parameters
settings
LoadDataSettingsData settings
Returns
New<ItemType>(string, IDataContainer)
Creates new document instance.
public static ItemType New<ItemType>(string className, IDataContainer data) where ItemType : BizFormItem, new()
Parameters
className
stringClass name in format application.class
data
IDataContainerData container containing both tree node and coupled table
Returns
- ItemType
Type Parameters
ItemType
New<ItemType>(string, DataRow)
Creates new document instance.
public static ItemType New<ItemType>(string className, DataRow dataRow) where ItemType : BizFormItem, new()
Parameters
className
stringClass name in format application.class
dataRow
DataRowData row containing both tree node and coupled table
Returns
- ItemType
Type Parameters
ItemType
SetObject()
Updates the object using appropriate provider.
protected override void SetObject()
SetValue(string, object)
Sets value of column.
public override bool SetValue(string columnName, object value)
Parameters
columnName
stringColumn name
value
objectColumn value
Returns
- bool
TryGetValue(string, out object)
Returns value of column.
public override bool TryGetValue(string columnName, out object value)
Parameters
columnName
stringColumn name
value
objectReturns the value
Returns
- bool
Returns true if the operation was successful (the value was present)
UpdateData()
Updates the object in the database while invoking the Update event.
protected override void UpdateData()
UpdateDataAsync(CancellationToken)
Asynchronously updates the object in the database while invoking the Update event.
protected override Task UpdateDataAsync(CancellationToken cancellationToken)
Parameters
cancellationToken
CancellationTokenThe cancellation instruction.
Returns
- Task