Skip to content

Releases: DrOverbuild/BootstrapHtmlHelpers

v0.0.22

11 Mar 17:20

Choose a tag to compare

v0.0.22 Pre-release
Pre-release
  • Adds a helper extension method ModelStateDictionary.GetErrorMessages that builds a string array of validation error messages for a given model property.

v0.0.21

26 Feb 19:04

Choose a tag to compare

v0.0.21 Pre-release
Pre-release

This release adds the htmlAttributes parameter to the CheckBoxFor method for building checkboxes.

Warning

This is a breaking change. If you add any HTML attributes to a checkbox's label, container, or validation and you are not using named parameters with CheckBoxFor, the attributes will be applied to the wrong HTML elements.

v0.0.20

03 Dec 16:28

Choose a tag to compare

v0.0.20 Pre-release
Pre-release

This release adds the validationHtmlAttributes parameter to all form group helpers. This parameter adds HTML attributes to the accompanying invalid-feedback element that is rendered under the control.

v0.0.19

25 Sep 16:04

Choose a tag to compare

v0.0.19 Pre-release
Pre-release
  • Fix an issue where radio button groups break layout and invalid class if the model state is invalid.
  • Fix an issue where original attribute dictionaries were updated instead of cloned.

v0.0.18

20 Sep 23:33

Choose a tag to compare

v0.0.18 Pre-release
Pre-release
  • Customize the text of the initial option with empty value on dropdowns for nullable enum properties.
  • Adds radio button groups for enum properties. Along with Yes/No radio button groups, attributes can be added to the containing div for additional customization.

v0.0.17

16 Aug 21:27

Choose a tag to compare

v0.0.17 Pre-release
Pre-release

Adds the overload for YesNoFor that accepts the non-nullable boolean property expression.

v0.0.16

16 Aug 21:07

Choose a tag to compare

v0.0.16 Pre-release
Pre-release

Fixes an issue when a non-nullable boolean property expression was passed into BootstrapTagBuilder<TModel>.YesNoControlFor

v0.0.15

10 May 05:11

Choose a tag to compare

v0.0.15 Pre-release
Pre-release
  • Add core control methods to allow building form components without the labels, margins, validation, and other messages that are accompanied with form-group