EditorExtension.GetValue<T>(String, MaskSettings) Method
Returns a specific editor’s value, which is validated based on the passed mask settings.
Namespace: DevExpress.Web.Mvc
Assembly: DevExpress.Web.Mvc5.v24.1.dll
NuGet Package: DevExpress.Web.Mvc5
Declaration
Parameters
Name | Type | Description |
---|---|---|
name | String | A string specifying the editor name (SettingsBase.Name). |
maskSettings | MaskSettings | A MaskSettings object containing the editor mask settings. |
Type Parameters
Name |
---|
T |
Returns
Type | Description |
---|---|
T | An object representing the editor value. |
Remarks
The GetValue<T> method is in effect only for DevExpress editor extensions (i.e., EditorExtension class descendants).
Use the static GetValue<T> method to access the editor value within the controller code.
Note
In order to pass the editor value to the controller, place the editor within the <form> tag (e.g., using the Html.BeginForm Method) and then submit the form to the server.
Note that the client-side validation of the user input can prevent the form from being submitted to the server unless the end-user input is valid.