ValidationSummaryBuilder.ValidationGroup(String) Method
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
public ValidationSummaryBuilder ValidationGroup(
string value
)
Parameters
Name | Type | Description |
---|---|---|
value | String | The option value. |
Returns
Type | Description |
---|---|
ValidationSummaryBuilder | 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