Table of Contents


aspx:Field

This component represents a read-only or input value of an Entity field on the user interface. This component respects the attributes of the associated field, including how it’s displayed to the user. 
 

<aspx:Field id='Name' runat='server' Value='{!Model.Name}'/>


Properties

PropertyDescription
IdThe ID of the HTML element.
ValueBind value containing the name of the object and the field to bind. You may bind Model or Items from DataBag.
LabelLabel of a field within the section. 
RequiredA Boolean value that specifies whether this inputField is a required field. If set to true, the user must specify a value for this field. If not selected, this value defaults to false.
HintA text value that is shown to the user on the right side of the input component to assist the user.
HideLabelA Boolean value that specifies whether this Field's label should be visible or not. If set to false, the input component spans across the entire row.
ReadOnlyA Boolean value that specifies whether this field is read only or editable.

OutputMode

Html or Text

ShowHelpText

A Boolean value, the default is true. When set to false, it will hide the help text in the field and remove the bubbles.