ValidationSummaryBuilder.ValidationGroup(String) Method
In This Article
Specifies the validation group for which summary should be generated. Mirrors the client-side validationGroup option.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
#Declaration
C#
public ValidationSummaryBuilder ValidationGroup(
string value
)
#Parameters
Name | Type | Description |
---|---|---|
value | String | The option value. |
#Returns
Type | Description |
---|---|
Validation |
A reference to this instance after the method is called. |
#Remarks
Refer to Validate Multiple Groups for more information.
Use the following notation to set the option’s value:
@(Html.DevExtreme().ValidationSummary()
.ValidationGroup("MyGroup")
)
See Also