Click or drag to resize

DataContextAddTextAreaField(String, Boolean, Int32, Int32, String, String, String, String, String, String, String, String, Boolean, Boolean) Method

Generates template based text area field based on specified parameters.

Namespace: GSF.Web.Model
Assembly: GSF.Web (in GSF.Web.dll) Version: 2.4.181-beta
Syntax
public string AddTextAreaField(
	string fieldName,
	bool required,
	int maxLength = 0,
	int rows = 2,
	string fieldLabel = null,
	string fieldID = null,
	string groupDataBinding = null,
	string labelDataBinding = null,
	string requiredDataBinding = null,
	string customDataBinding = null,
	string dependencyFieldName = null,
	string toolTip = null,
	bool initialFocus = false,
	bool enableHotLinks = true
)
View Source

Parameters

fieldName  String
Field name for text area field.
required  Boolean
Determines if field name is required.
maxLength  Int32  (Optional)
Defines maximum text area field length.
rows  Int32  (Optional)
Number of rows for text area.
fieldLabel  String  (Optional)
Label name for text area field, defaults to fieldName.
fieldID  String  (Optional)
ID to use for text area field; defaults to text + fieldName.
groupDataBinding  String  (Optional)
Data-bind operations to apply to outer form-group div, if any.
labelDataBinding  String  (Optional)
Data-bind operations to apply to label, if any.
requiredDataBinding  String  (Optional)
Boolean data-bind operation to apply to required state, if any.
customDataBinding  String  (Optional)
Extra custom data-binding operations to apply to field, if any.
dependencyFieldName  String  (Optional)
Defines default "enabled" subordinate data-bindings based a single boolean field, e.g., a check-box.
toolTip  String  (Optional)
Tool tip text to apply to field, if any.
initialFocus  Boolean  (Optional)
Use field for initial focus.
enableHotLinks  Boolean  (Optional)
Enable clickable URLs and e-mail addresses in view mode.

Return Value

String
Generated HTML for new text area field based on specified parameters.
See Also