Skip to content

7.0.0

Compare
Choose a tag to compare
@jbogard jbogard released this 26 Mar 18:49
· 35 commits to master since this release
f68b2cf

This release includes support in ASP.NET Core for:

  • Model Metadata for editors, displays, labels, and validation message displays
  • Model State for validation messages and editors
  • Client-side validation metadata
  • 1st-class validation message support

The tag builders from services.AddHtmlTags now add deep Model Metadata and Model State support, providing equivalent HTML creation as the existing editor/display templates.

This release also adds first-class validation message support, using:

@Html.ValidationMessage(m => FirstName)

Or using tag helpers:

<validation-message-tag for="FirstName" />