aspx:InputField
An HTML input element for a value that corresponds to a field on a Magentrix Entity. The component respects all attributes and properties associated with the field, such as the type of field: Currency or Email Address.
<aspx:inputField runat="server" Value="{!Model.Name}"/>
Properties
| Property | Description |
|---|
| Id | The ID of the HTML element. |
| Value | Bind value containing the name of the object and the field to bind. |
| Label | Label of the field within the section. |
| Required | A 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. |
| Hint | A text value that is shown to the user on the right side of the input component to assist them. |
| HideLabel | A 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. |
| ShowHelpText | A Boolean value, the default is true. When set to false, it will hide the help text in the field and remove the bubble. |