aspx:FieldPicklist
This component should be used for pick-list controls. This component handles dependent pick-lists and global pick-lists based on the Entity schema correctly. This component inherits all its properties from FieldDropDown.
<aspx:FieldPicklist runat='server' value='{!Model.Status}'/>
Below is the list of components' 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 a 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 the user. |
| 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. |
| Enabled | A boolean that determines whether to show the field or not. |
| PlaceHolder | Text is shown inside the input component as a watermark. |
| Width | The width of the input component, the value can be provided in pixels or percentages. |
| IsNullable | A boolean that defines whether the field can be null. |
| HelpText | A text value that displays a small bubble next to the field label. When hovered over, the help text will appear. |
| ReadOnly | A boolean value that determines whether this field can be set or not. |