Skip to main content
A newer version of this page is available. .
JS

ValidationGroup(ViewContext) Constructor

For internal use only. Initializes a new ValidationGroup class instance.

Namespace: DevExtreme.AspNet.Mvc

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public ValidationGroup(
    ViewContext viewContext
)

Parameters

Name Type Description
viewContext ViewContext

For internal use only.

Remarks

Do not use this constructor explicitly. To create a new validation group, use the ValidationGroup helper method:

@using(Html.DevExtreme().ValidationGroup()) {
    @(Html.DevExtreme().TextBox().Name("Name"))
    @(Html.DevExtreme().TextBox().Name("BirthDate"))
}
See Also